pub enum ObjectPropertiesInReplyToTermEnum {
XsdAnyUri(XsdAnyUri),
BaseBox(BaseBox),
}Expand description
Terminating variations for the in_reply_to field from ObjectProperties
Since in_reply_to can be one of multiple types, this enum represents all possibilities of in_reply_to
Variants§
Trait Implementations§
Source§impl Clone for ObjectPropertiesInReplyToTermEnum
impl Clone for ObjectPropertiesInReplyToTermEnum
Source§fn clone(&self) -> ObjectPropertiesInReplyToTermEnum
fn clone(&self) -> ObjectPropertiesInReplyToTermEnum
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 ObjectPropertiesInReplyToTermEnum
impl<'de> Deserialize<'de> for ObjectPropertiesInReplyToTermEnum
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<BaseBox> for ObjectPropertiesInReplyToTermEnum
impl From<BaseBox> for ObjectPropertiesInReplyToTermEnum
Source§fn from(item: BaseBox) -> ObjectPropertiesInReplyToTermEnum
fn from(item: BaseBox) -> ObjectPropertiesInReplyToTermEnum
Converts to this type from the input type.
Source§impl From<ObjectPropertiesInReplyToTermEnum> for ObjectPropertiesInReplyToEnum
impl From<ObjectPropertiesInReplyToTermEnum> for ObjectPropertiesInReplyToEnum
Source§fn from(term: ObjectPropertiesInReplyToTermEnum) -> Self
fn from(term: ObjectPropertiesInReplyToTermEnum) -> Self
Converts to this type from the input type.
Source§impl From<XsdAnyUri> for ObjectPropertiesInReplyToTermEnum
impl From<XsdAnyUri> for ObjectPropertiesInReplyToTermEnum
Source§fn from(item: XsdAnyUri) -> ObjectPropertiesInReplyToTermEnum
fn from(item: XsdAnyUri) -> ObjectPropertiesInReplyToTermEnum
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ObjectPropertiesInReplyToTermEnum
impl RefUnwindSafe for ObjectPropertiesInReplyToTermEnum
impl Send for ObjectPropertiesInReplyToTermEnum
impl Sync for ObjectPropertiesInReplyToTermEnum
impl Unpin for ObjectPropertiesInReplyToTermEnum
impl UnsafeUnpin for ObjectPropertiesInReplyToTermEnum
impl UnwindSafe for ObjectPropertiesInReplyToTermEnum
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