pub struct PlaybookBinary {
pub wasm: Vec<u8>,
pub spec: PlaybookSpec,
pub configurations: Vec<ConfiguredCapability>,
}Fields§
§wasm: Vec<u8>Named module identity (author/name/version), if this is a named module.
spec: PlaybookSpec§configurations: Vec<ConfiguredCapability>Implementations§
Trait Implementations§
Source§impl Artifact for PlaybookBinary
impl Artifact for PlaybookBinary
Source§impl Clone for PlaybookBinary
impl Clone for PlaybookBinary
Source§fn clone(&self) -> PlaybookBinary
fn clone(&self) -> PlaybookBinary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlaybookBinary
impl Debug for PlaybookBinary
Source§impl<'de> Deserialize<'de> for PlaybookBinary
impl<'de> Deserialize<'de> for PlaybookBinary
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
Source§impl From<PlaybookBinary> for Artifacts
impl From<PlaybookBinary> for Artifacts
Source§fn from(value: PlaybookBinary) -> Self
fn from(value: PlaybookBinary) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PlaybookBinary
impl PartialEq for PlaybookBinary
Source§fn eq(&self, other: &PlaybookBinary) -> bool
fn eq(&self, other: &PlaybookBinary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PlaybookBinary
impl Serialize for PlaybookBinary
impl StructuralPartialEq for PlaybookBinary
Auto Trait Implementations§
impl Freeze for PlaybookBinary
impl RefUnwindSafe for PlaybookBinary
impl Send for PlaybookBinary
impl Sync for PlaybookBinary
impl Unpin for PlaybookBinary
impl UnsafeUnpin for PlaybookBinary
impl UnwindSafe for PlaybookBinary
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