pub enum InterfaceTypeAggregation {
DatastreamIndividual(DatastreamIndividual),
DatastreamObject(DatastreamObject),
Properties(Properties),
}Expand description
Enum of all the types and aggregation of interfaces
This is not a direct representation of only the mapping to permit extensibility of specific properties present only in some aggregations.
Variants§
DatastreamIndividual(DatastreamIndividual)
Interface with type datastream and aggregations individual.
DatastreamObject(DatastreamObject)
Interface with type datastream and aggregations object.
Properties(Properties)
A property interface.
Trait Implementations§
Source§impl Clone for InterfaceTypeAggregation
impl Clone for InterfaceTypeAggregation
Source§fn clone(&self) -> InterfaceTypeAggregation
fn clone(&self) -> InterfaceTypeAggregation
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 InterfaceTypeAggregation
impl Debug for InterfaceTypeAggregation
Source§impl PartialEq for InterfaceTypeAggregation
impl PartialEq for InterfaceTypeAggregation
Source§fn eq(&self, other: &InterfaceTypeAggregation) -> bool
fn eq(&self, other: &InterfaceTypeAggregation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for InterfaceTypeAggregation
impl StructuralPartialEq for InterfaceTypeAggregation
Auto Trait Implementations§
impl Freeze for InterfaceTypeAggregation
impl RefUnwindSafe for InterfaceTypeAggregation
impl Send for InterfaceTypeAggregation
impl Sync for InterfaceTypeAggregation
impl Unpin for InterfaceTypeAggregation
impl UnsafeUnpin for InterfaceTypeAggregation
impl UnwindSafe for InterfaceTypeAggregation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.