pub enum ActorAndObjectOptTargetPropertiesObjectEnum {
Array(Vec<ActorAndObjectOptTargetPropertiesObjectTermEnum>),
Term(ActorAndObjectOptTargetPropertiesObjectTermEnum),
}Expand description
Non-Terminating variations for the object field from ActorAndObjectOptTargetProperties
object isn’t functional, meaning it can be represented as either a single ActorAndObjectOptTargetPropertiesObjectTermEnum or a vector of ActorAndObjectOptTargetPropertiesObjectTermEnum
Variants§
Array(Vec<ActorAndObjectOptTargetPropertiesObjectTermEnum>)
Term(ActorAndObjectOptTargetPropertiesObjectTermEnum)
Trait Implementations§
Source§impl Clone for ActorAndObjectOptTargetPropertiesObjectEnum
impl Clone for ActorAndObjectOptTargetPropertiesObjectEnum
Source§fn clone(&self) -> ActorAndObjectOptTargetPropertiesObjectEnum
fn clone(&self) -> ActorAndObjectOptTargetPropertiesObjectEnum
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 ActorAndObjectOptTargetPropertiesObjectEnum
impl<'de> Deserialize<'de> for ActorAndObjectOptTargetPropertiesObjectEnum
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<ActorAndObjectOptTargetPropertiesObjectTermEnum> for ActorAndObjectOptTargetPropertiesObjectEnum
impl From<ActorAndObjectOptTargetPropertiesObjectTermEnum> for ActorAndObjectOptTargetPropertiesObjectEnum
Source§fn from(term: ActorAndObjectOptTargetPropertiesObjectTermEnum) -> Self
fn from(term: ActorAndObjectOptTargetPropertiesObjectTermEnum) -> Self
Converts to this type from the input type.
Source§impl From<Vec<ActorAndObjectOptTargetPropertiesObjectTermEnum>> for ActorAndObjectOptTargetPropertiesObjectEnum
impl From<Vec<ActorAndObjectOptTargetPropertiesObjectTermEnum>> for ActorAndObjectOptTargetPropertiesObjectEnum
Source§fn from(v: Vec<ActorAndObjectOptTargetPropertiesObjectTermEnum>) -> Self
fn from(v: Vec<ActorAndObjectOptTargetPropertiesObjectTermEnum>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ActorAndObjectOptTargetPropertiesObjectEnum
impl RefUnwindSafe for ActorAndObjectOptTargetPropertiesObjectEnum
impl Send for ActorAndObjectOptTargetPropertiesObjectEnum
impl Sync for ActorAndObjectOptTargetPropertiesObjectEnum
impl Unpin for ActorAndObjectOptTargetPropertiesObjectEnum
impl UnsafeUnpin for ActorAndObjectOptTargetPropertiesObjectEnum
impl UnwindSafe for ActorAndObjectOptTargetPropertiesObjectEnum
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