pub struct BuildOut {
pub bytes: Option<i32>,
pub generated: Option<bool>,
pub plugin: Option<Box<AuthoredPlugin>>,
}Fields§
§bytes: Option<i32>Bytes is the size of the bundled CommonJS the runtime will execute.
generated: Option<bool>Generated is whether a model wrote the source from a spec, rather than the caller posting the source itself.
plugin: Option<Box<AuthoredPlugin>>Plugin is the plugin as stored, with its derived id and build time.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BuildOut
impl<'de> Deserialize<'de> for BuildOut
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for BuildOut
Auto Trait Implementations§
impl Freeze for BuildOut
impl RefUnwindSafe for BuildOut
impl Send for BuildOut
impl Sync for BuildOut
impl Unpin for BuildOut
impl UnsafeUnpin for BuildOut
impl UnwindSafe for BuildOut
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more