Navigation Menu

Skip to content

Commit

Permalink
make module usable
Browse files Browse the repository at this point in the history
  • Loading branch information
syntacticsugarglider committed Dec 20, 2019
1 parent f17bbe5 commit 4892176
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/orchestrator/mod.rs
Expand Up @@ -29,7 +29,7 @@ type ConcreteContainers = web::WebContainers;
type ConcreteContainers = native::NativeContainers;

#[derive(Serialize, Deserialize, Kind)]
pub struct Module<T: Kind>(Vec<u8>, PhantomData<T>);
pub struct Module<T: Kind>(#[kind(using::Serde)] Vec<u8>, PhantomData<T>);

impl<T: Kind> Module<T> {
pub fn new(data: Vec<u8>) -> Self {
Expand Down

0 comments on commit 4892176

Please sign in to comment.