pub struct LayerContentMetadata<M> {
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
sourceimpl<M: Debug> Debug for LayerContentMetadata<M>
impl<M: Debug> Debug for LayerContentMetadata<M>
sourceimpl<'de, M> Deserialize<'de> for LayerContentMetadata<M> where
M: Deserialize<'de>,
impl<'de, M> Deserialize<'de> for LayerContentMetadata<M> where
M: Deserialize<'de>,
sourcefn 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
sourceimpl<M: PartialEq> PartialEq<LayerContentMetadata<M>> for LayerContentMetadata<M>
impl<M: PartialEq> PartialEq<LayerContentMetadata<M>> for LayerContentMetadata<M>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more