pub struct AddChainResponse {
pub sct_version: u8,
pub id: String,
pub timestamp: u64,
pub extensions: String,
pub signature: String,
}Fields§
§sct_version: u8The version of the SignedCertificateTimestamp structure, in decimal. A compliant v1 implementation MUST NOT expect this to be 0 (i.e., v1).
id: StringThe log ID, base64 encoded. Since log clients who request an SCT for inclusion in TLS handshakes are not required to verify it, we do not assume they know the ID of the log.
timestamp: u64The SCT timestamp, in decimal.
extensions: StringAn opaque type for future expansion. It is likely that not all participants will need to understand data in this field. Logs should set this to the empty string. Clients should decode the base64-encoded data and include it in the SCT.
signature: StringThe SCT signature, base64 encoded.
Trait Implementations§
Source§impl Debug for AddChainResponse
impl Debug for AddChainResponse
Source§impl<'de> Deserialize<'de> for AddChainResponse
impl<'de> Deserialize<'de> for AddChainResponse
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 AddChainResponse
impl RefUnwindSafe for AddChainResponse
impl Send for AddChainResponse
impl Sync for AddChainResponse
impl Unpin for AddChainResponse
impl UnwindSafe for AddChainResponse
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