pub struct CoordinatorTargetTable {
pub target_id: TargetId,
pub values: Vec<CoordinatorTargetValue>,
}Fields§
§target_id: TargetId§values: Vec<CoordinatorTargetValue>Implementations§
Trait Implementations§
Source§impl Clone for CoordinatorTargetTable
impl Clone for CoordinatorTargetTable
Source§fn clone(&self) -> CoordinatorTargetTable
fn clone(&self) -> CoordinatorTargetTable
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 CoordinatorTargetTable
impl Debug for CoordinatorTargetTable
Source§impl<'de> Deserialize<'de> for CoordinatorTargetTable
impl<'de> Deserialize<'de> for CoordinatorTargetTable
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CoordinatorTargetTable, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CoordinatorTargetTable, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CoordinatorTargetTable
impl PartialEq for CoordinatorTargetTable
Source§fn eq(&self, other: &CoordinatorTargetTable) -> bool
fn eq(&self, other: &CoordinatorTargetTable) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CoordinatorTargetTable
impl Serialize for CoordinatorTargetTable
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 CoordinatorTargetTable
Auto Trait Implementations§
impl Freeze for CoordinatorTargetTable
impl RefUnwindSafe for CoordinatorTargetTable
impl Send for CoordinatorTargetTable
impl Sync for CoordinatorTargetTable
impl Unpin for CoordinatorTargetTable
impl UnsafeUnpin for CoordinatorTargetTable
impl UnwindSafe for CoordinatorTargetTable
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