pub struct CtClient<C> { /* private fields */ }Expand description
Wrapper around Client, that implements fetching and validation logic
Implementations§
Source§impl<C: Client> CtClient<C>
impl<C: Client> CtClient<C>
pub async fn get_checkpoint(&self) -> Result<SignedTreeHead, ClientError>
pub async fn get_tile(&self, tile_id: TileId) -> Result<Tile, ClientError>
Source§impl<C: Client> CtClient<C>
impl<C: Client> CtClient<C>
pub async fn get_sth_v1(&self) -> Result<SignedTreeHead, ClientError>
pub async fn update_sth_v1( &self, old_sth: Option<&SignedTreeHead>, ) -> Result<SignedTreeHead, ClientError>
pub async fn check_consistency_v1( &self, first: &SignedTreeHead, second: &SignedTreeHead, ) -> Result<(), ClientError>
pub async fn check_sct_inclusion_v1( &self, sct: &SignedCertificateTimestamp, sth: &SignedTreeHead, leaf: &MerkleTreeLeaf, ) -> Result<u64, ClientError>
pub async fn get_roots_v1(&self) -> Result<Vec<Certificate>, ClientError>
Trait Implementations§
impl<C: Eq> Eq for CtClient<C>
impl<C: PartialEq> StructuralPartialEq for CtClient<C>
Auto Trait Implementations§
impl<C> Freeze for CtClient<C>where
C: Freeze,
impl<C> RefUnwindSafe for CtClient<C>where
C: RefUnwindSafe,
impl<C> Send for CtClient<C>where
C: Send,
impl<C> Sync for CtClient<C>where
C: Sync,
impl<C> Unpin for CtClient<C>where
C: Unpin,
impl<C> UnsafeUnpin for CtClient<C>where
C: UnsafeUnpin,
impl<C> UnwindSafe for CtClient<C>where
C: UnwindSafe,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more