pub struct AnchorLog {
pub name: String,
pub operator_key: Vec<u8>,
pub endpoint: String,
}Expand description
One recognized transparency log.
Fields§
§name: StringLog name.
operator_key: Vec<u8>The log operator’s public key (verifies signed tree heads).
endpoint: StringLog endpoint (primary or mirror).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AnchorLog
impl<'de> Deserialize<'de> for AnchorLog
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 AnchorLog
impl RefUnwindSafe for AnchorLog
impl Send for AnchorLog
impl Sync for AnchorLog
impl Unpin for AnchorLog
impl UnsafeUnpin for AnchorLog
impl UnwindSafe for AnchorLog
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