pub struct AddLayerCollection {
pub description: String,
pub name: String,
pub properties: Option<Vec<Vec<String>>>,
}Fields§
§description: String§name: String§properties: Option<Vec<Vec<String>>>Implementations§
Source§impl AddLayerCollection
impl AddLayerCollection
pub fn new(description: String, name: String) -> AddLayerCollection
Trait Implementations§
Source§impl Clone for AddLayerCollection
impl Clone for AddLayerCollection
Source§fn clone(&self) -> AddLayerCollection
fn clone(&self) -> AddLayerCollection
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 AddLayerCollection
impl Debug for AddLayerCollection
Source§impl Default for AddLayerCollection
impl Default for AddLayerCollection
Source§fn default() -> AddLayerCollection
fn default() -> AddLayerCollection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddLayerCollection
impl<'de> Deserialize<'de> for AddLayerCollection
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 AddLayerCollection
impl PartialEq for AddLayerCollection
Source§fn eq(&self, other: &AddLayerCollection) -> bool
fn eq(&self, other: &AddLayerCollection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AddLayerCollection
impl Serialize for AddLayerCollection
impl StructuralPartialEq for AddLayerCollection
Auto Trait Implementations§
impl Freeze for AddLayerCollection
impl RefUnwindSafe for AddLayerCollection
impl Send for AddLayerCollection
impl Sync for AddLayerCollection
impl Unpin for AddLayerCollection
impl UnsafeUnpin for AddLayerCollection
impl UnwindSafe for AddLayerCollection
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