pub struct PlatformOperation {
pub id: String,
pub capability_id: String,
pub kind: PlatformActionKind,
pub summary: String,
pub transports: Vec<PlatformOperationTransport>,
pub available: bool,
}Fields§
§id: String§capability_id: String§kind: PlatformActionKind§summary: String§transports: Vec<PlatformOperationTransport>§available: boolTrait Implementations§
Source§impl Clone for PlatformOperation
impl Clone for PlatformOperation
Source§fn clone(&self) -> PlatformOperation
fn clone(&self) -> PlatformOperation
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 PlatformOperation
impl Debug for PlatformOperation
Source§impl<'de> Deserialize<'de> for PlatformOperation
impl<'de> Deserialize<'de> for PlatformOperation
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformOperation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformOperation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PlatformOperation
Source§impl PartialEq for PlatformOperation
impl PartialEq for PlatformOperation
Source§impl Serialize for PlatformOperation
impl Serialize for PlatformOperation
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PlatformOperation
Auto Trait Implementations§
impl Freeze for PlatformOperation
impl RefUnwindSafe for PlatformOperation
impl Send for PlatformOperation
impl Sync for PlatformOperation
impl Unpin for PlatformOperation
impl UnsafeUnpin for PlatformOperation
impl UnwindSafe for PlatformOperation
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