pub struct LayerContentMetadata<M = GenericMetadata> {
pub types: Option<LayerTypes>,
pub metadata: M,
}Expand description
Describes Layer Content Metadata
Fields§
§types: Option<LayerTypes>§metadata: MMetadata that describes the layer contents.
Trait Implementations§
Source§impl<M: Debug> Debug for LayerContentMetadata<M>
impl<M: Debug> Debug for LayerContentMetadata<M>
Source§impl<'de, M> Deserialize<'de> for LayerContentMetadata<M>where
M: Deserialize<'de>,
impl<'de, M> Deserialize<'de> for LayerContentMetadata<M>where
M: Deserialize<'de>,
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<M: PartialEq> PartialEq for LayerContentMetadata<M>
impl<M: PartialEq> PartialEq for LayerContentMetadata<M>
Auto Trait Implementations§
impl<M> Freeze for LayerContentMetadata<M>where
M: Freeze,
impl<M> RefUnwindSafe for LayerContentMetadata<M>where
M: RefUnwindSafe,
impl<M> Send for LayerContentMetadata<M>where
M: Send,
impl<M> Sync for LayerContentMetadata<M>where
M: Sync,
impl<M> Unpin for LayerContentMetadata<M>where
M: Unpin,
impl<M> UnwindSafe for LayerContentMetadata<M>where
M: UnwindSafe,
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