pub enum PrimaryKey {
Single(String),
Composite(BTreeMap<String, String>),
}
Variants§
Trait Implementations§
Source§impl Debug for PrimaryKey
impl Debug for PrimaryKey
Source§impl From<&String> for PrimaryKey
impl From<&String> for PrimaryKey
Source§impl From<&str> for PrimaryKey
impl From<&str> for PrimaryKey
Source§impl From<String> for PrimaryKey
impl From<String> for PrimaryKey
Source§impl Hash for PrimaryKey
impl Hash for PrimaryKey
Source§impl PartialEq for PrimaryKey
impl PartialEq for PrimaryKey
impl Eq for PrimaryKey
impl StructuralPartialEq for PrimaryKey
Auto Trait Implementations§
impl Freeze for PrimaryKey
impl RefUnwindSafe for PrimaryKey
impl Send for PrimaryKey
impl Sync for PrimaryKey
impl Unpin for PrimaryKey
impl UnwindSafe for PrimaryKey
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