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