pub struct ChunkMeta {
pub name: String,
pub description: Option<String>,
pub version: Option<String>,
pub tags: Vec<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}Expand description
Metadata for a chunk
Fields§
§name: String§description: Option<String>§version: Option<String>§created_at: Option<String>§updated_at: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for ChunkMeta
impl<'de> Deserialize<'de> for ChunkMeta
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
Auto Trait Implementations§
impl Freeze for ChunkMeta
impl RefUnwindSafe for ChunkMeta
impl Send for ChunkMeta
impl Sync for ChunkMeta
impl Unpin for ChunkMeta
impl UnwindSafe for ChunkMeta
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