pub struct LogIndex(/* private fields */);Expand description
Transparency log index
Represents a log index in the transparency log. Per the protobuf spec, this is an int64. For JSON serialization, we serialize as an integer but accept both integers and strings for backwards compatibility.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LogIndex
impl<'de> Deserialize<'de> for LogIndex
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 Copy for LogIndex
impl Eq for LogIndex
impl StructuralPartialEq for LogIndex
Auto Trait Implementations§
impl Freeze for LogIndex
impl RefUnwindSafe for LogIndex
impl Send for LogIndex
impl Sync for LogIndex
impl Unpin for LogIndex
impl UnsafeUnpin for LogIndex
impl UnwindSafe for LogIndex
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