pub enum KeyLiteral {
fixed32 {
value: u32,
},
fixed64 {
value: u64,
},
sfixed32 {
value: i32,
},
sfixed64 {
value: i64,
},
timestamp_micros {
value: i64,
},
string {
value: String,
},
}Variants§
Trait Implementations§
Source§impl Debug for KeyLiteral
impl Debug for KeyLiteral
Source§impl PartialEq for KeyLiteral
impl PartialEq for KeyLiteral
impl Eq for KeyLiteral
impl StructuralPartialEq for KeyLiteral
Auto Trait Implementations§
impl Freeze for KeyLiteral
impl RefUnwindSafe for KeyLiteral
impl Send for KeyLiteral
impl Sync for KeyLiteral
impl Unpin for KeyLiteral
impl UnwindSafe for KeyLiteral
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