pub struct AnonPlaybook {
pub package: String,
pub dependencies: BTreeMap<String, Dependency>,
pub configurations: Vec<ConfiguredCapability>,
pub source: String,
pub interconnect: BTreeMap<String, PlaybookIdent>,
}Fields§
§package: String§dependencies: BTreeMap<String, Dependency>§configurations: Vec<ConfiguredCapability>§source: String§interconnect: BTreeMap<String, PlaybookIdent>Trait Implementations§
Source§impl Clone for AnonPlaybook
impl Clone for AnonPlaybook
Source§fn clone(&self) -> AnonPlaybook
fn clone(&self) -> AnonPlaybook
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 AnonPlaybook
impl Debug for AnonPlaybook
Source§impl PartialEq for AnonPlaybook
impl PartialEq for AnonPlaybook
Source§fn eq(&self, other: &AnonPlaybook) -> bool
fn eq(&self, other: &AnonPlaybook) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AnonPlaybook
Auto Trait Implementations§
impl Freeze for AnonPlaybook
impl RefUnwindSafe for AnonPlaybook
impl Send for AnonPlaybook
impl Sync for AnonPlaybook
impl Unpin for AnonPlaybook
impl UnsafeUnpin for AnonPlaybook
impl UnwindSafe for AnonPlaybook
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