pub struct Layer {
pub description: String,
pub id: Box<ProviderLayerId>,
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§id: Box<ProviderLayerId>§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§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Layer
impl<'de> Deserialize<'de> for Layer
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
impl StructuralPartialEq for Layer
Auto Trait Implementations§
impl Freeze for Layer
impl RefUnwindSafe for Layer
impl Send for Layer
impl Sync for Layer
impl Unpin for Layer
impl UnsafeUnpin for Layer
impl UnwindSafe for Layer
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