pub struct KindVersion {
pub kind: String,
pub version: String,
}Expand description
Entry kind and version
Fields§
§kind: StringEntry kind (e.g., “hashedrekord”)
version: StringEntry version (e.g., “0.0.1”)
Trait Implementations§
Source§impl Clone for KindVersion
impl Clone for KindVersion
Source§fn clone(&self) -> KindVersion
fn clone(&self) -> KindVersion
Returns a duplicate of the value. Read more
1.0.0 · 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 KindVersion
impl Debug for KindVersion
Source§impl<'de> Deserialize<'de> for KindVersion
impl<'de> Deserialize<'de> for KindVersion
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 KindVersion
impl PartialEq for KindVersion
Source§impl Serialize for KindVersion
impl Serialize for KindVersion
impl Eq for KindVersion
impl StructuralPartialEq for KindVersion
Auto Trait Implementations§
impl Freeze for KindVersion
impl RefUnwindSafe for KindVersion
impl Send for KindVersion
impl Sync for KindVersion
impl Unpin for KindVersion
impl UnsafeUnpin for KindVersion
impl UnwindSafe for KindVersion
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