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