pub struct RoutineCollection {
pub uid: Option<String>,
pub parent_uid: Option<String>,
pub use: Option<String>,
pub encoded_data: Vec<EncodedRoutine>,
pub custom_properties: Vec<CustomPropertiesCollection>,
pub routine: Vec<Routine>,
}Expand description
RoutineCollectionType element
Fields§
§uid: Option<String>UId attribute
parent_uid: Option<String>ParentUId attribute
use: Option<String>Use attribute
encoded_data: Vec<EncodedRoutine>EncodedData element
custom_properties: Vec<CustomPropertiesCollection>CustomProperties element
routine: Vec<Routine>Routine element
Trait Implementations§
Source§impl Clone for RoutineCollection
impl Clone for RoutineCollection
Source§fn clone(&self) -> RoutineCollection
fn clone(&self) -> RoutineCollection
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 Debug for RoutineCollection
impl Debug for RoutineCollection
Source§impl Default for RoutineCollection
impl Default for RoutineCollection
Source§fn default() -> RoutineCollection
fn default() -> RoutineCollection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoutineCollection
impl<'de> Deserialize<'de> for RoutineCollection
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 PartialEq for RoutineCollection
impl PartialEq for RoutineCollection
Source§impl Serialize for RoutineCollection
impl Serialize for RoutineCollection
impl StructuralPartialEq for RoutineCollection
Auto Trait Implementations§
impl Freeze for RoutineCollection
impl RefUnwindSafe for RoutineCollection
impl Send for RoutineCollection
impl Sync for RoutineCollection
impl Unpin for RoutineCollection
impl UnsafeUnpin for RoutineCollection
impl UnwindSafe for RoutineCollection
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