pub enum ActivityPropertiesInstrumentTermEnum {
XsdAnyUri(XsdAnyUri),
BaseBox(BaseBox),
}Expand description
Terminating variations for the instrument field from ActivityProperties
Since instrument can be one of multiple types, this enum represents all possibilities of instrument
Variants§
Trait Implementations§
Source§impl Clone for ActivityPropertiesInstrumentTermEnum
impl Clone for ActivityPropertiesInstrumentTermEnum
Source§fn clone(&self) -> ActivityPropertiesInstrumentTermEnum
fn clone(&self) -> ActivityPropertiesInstrumentTermEnum
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ActivityPropertiesInstrumentTermEnum
impl<'de> Deserialize<'de> for ActivityPropertiesInstrumentTermEnum
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ActivityPropertiesInstrumentTermEnum> for ActivityPropertiesInstrumentEnum
impl From<ActivityPropertiesInstrumentTermEnum> for ActivityPropertiesInstrumentEnum
Source§fn from(term: ActivityPropertiesInstrumentTermEnum) -> Self
fn from(term: ActivityPropertiesInstrumentTermEnum) -> Self
Converts to this type from the input type.
Source§impl From<BaseBox> for ActivityPropertiesInstrumentTermEnum
impl From<BaseBox> for ActivityPropertiesInstrumentTermEnum
Source§fn from(item: BaseBox) -> ActivityPropertiesInstrumentTermEnum
fn from(item: BaseBox) -> ActivityPropertiesInstrumentTermEnum
Converts to this type from the input type.
Source§impl From<XsdAnyUri> for ActivityPropertiesInstrumentTermEnum
impl From<XsdAnyUri> for ActivityPropertiesInstrumentTermEnum
Source§fn from(item: XsdAnyUri) -> ActivityPropertiesInstrumentTermEnum
fn from(item: XsdAnyUri) -> ActivityPropertiesInstrumentTermEnum
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ActivityPropertiesInstrumentTermEnum
impl RefUnwindSafe for ActivityPropertiesInstrumentTermEnum
impl Send for ActivityPropertiesInstrumentTermEnum
impl Sync for ActivityPropertiesInstrumentTermEnum
impl Unpin for ActivityPropertiesInstrumentTermEnum
impl UnsafeUnpin for ActivityPropertiesInstrumentTermEnum
impl UnwindSafe for ActivityPropertiesInstrumentTermEnum
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