pub struct CursorMetaEntry {
pub key: String,
pub value: String,
}Expand description
One row in Cursor’s meta table.
Fields§
§key: String§value: StringTrait Implementations§
Source§impl Clone for CursorMetaEntry
impl Clone for CursorMetaEntry
Source§fn clone(&self) -> CursorMetaEntry
fn clone(&self) -> CursorMetaEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CursorMetaEntry
impl Debug for CursorMetaEntry
Source§impl<'de> Deserialize<'de> for CursorMetaEntry
impl<'de> Deserialize<'de> for CursorMetaEntry
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 Eq for CursorMetaEntry
Source§impl PartialEq for CursorMetaEntry
impl PartialEq for CursorMetaEntry
Source§impl Serialize for CursorMetaEntry
impl Serialize for CursorMetaEntry
impl StructuralPartialEq for CursorMetaEntry
Auto Trait Implementations§
impl Freeze for CursorMetaEntry
impl RefUnwindSafe for CursorMetaEntry
impl Send for CursorMetaEntry
impl Sync for CursorMetaEntry
impl Unpin for CursorMetaEntry
impl UnsafeUnpin for CursorMetaEntry
impl UnwindSafe for CursorMetaEntry
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