changed devtools private types to public

This commit is contained in:
Matthew Kuo 2016-01-17 04:13:33 -08:00
parent 58174448de
commit 64f5818428
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@ pub trait Actor: Any + ActorAsAny {
fn name(&self) -> String;
}
trait ActorAsAny {
pub trait ActorAsAny {
fn actor_as_any(&self) -> &Any;
fn actor_as_any_mut(&mut self) -> &mut Any;
}

View file

@ -35,7 +35,7 @@ struct ListTabsReply {
}
#[derive(RustcEncodable)]
struct RootActorMsg {
pub struct RootActorMsg {
from: String,
applicationType: String,
traits: ActorTraits,