pub struct GetSthResponse {
pub tree_size: u64,
pub timestamp: u64,
pub sha256_root_hash: String,
pub tree_head_signature: String,
}Fields§
§tree_size: u64The size of the tree, in entries, in decimal.
timestamp: u64The timestamp, in decimal.
sha256_root_hash: StringThe Merkle Tree Hash of the tree, in base64.
tree_head_signature: StringA TreeHeadSignature for the above data.
Trait Implementations§
Source§impl Debug for GetSthResponse
impl Debug for GetSthResponse
Source§impl<'de> Deserialize<'de> for GetSthResponse
impl<'de> Deserialize<'de> for GetSthResponse
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
Auto Trait Implementations§
impl Freeze for GetSthResponse
impl RefUnwindSafe for GetSthResponse
impl Send for GetSthResponse
impl Sync for GetSthResponse
impl Unpin for GetSthResponse
impl UnsafeUnpin for GetSthResponse
impl UnwindSafe for GetSthResponse
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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