pub struct RequestBuilder<'a> { /* private fields */ }
Expand description
Builder for Request
.
Implementations§
source§impl<'a> RequestBuilder<'a>
impl<'a> RequestBuilder<'a>
sourcepub fn new(config: &'a RequestConfig) -> Self
pub fn new(config: &'a RequestConfig) -> Self
Creates a new request builder.
sourcepub fn server_name(&mut self, name: ServerName) -> &mut Self
pub fn server_name(&mut self, name: ServerName) -> &mut Self
Sets the server name.
sourcepub fn server_cert_data(&mut self, data: ServerCertData) -> &mut Self
pub fn server_cert_data(&mut self, data: ServerCertData) -> &mut Self
Sets the server identity data.
sourcepub fn encoding_tree(&mut self, tree: EncodingTree) -> &mut Self
pub fn encoding_tree(&mut self, tree: EncodingTree) -> &mut Self
Sets the tree to commit to the transcript encodings.
sourcepub fn transcript(&mut self, transcript: Transcript) -> &mut Self
pub fn transcript(&mut self, transcript: Transcript) -> &mut Self
Sets the transcript.
sourcepub fn build(
self,
provider: &CryptoProvider,
) -> Result<(Request, Secrets), RequestBuilderError>
pub fn build( self, provider: &CryptoProvider, ) -> Result<(Request, Secrets), RequestBuilderError>
Builds the attestation request and returns the corresponding secrets.
Auto Trait Implementations§
impl<'a> Freeze for RequestBuilder<'a>
impl<'a> RefUnwindSafe for RequestBuilder<'a>
impl<'a> Send for RequestBuilder<'a>
impl<'a> Sync for RequestBuilder<'a>
impl<'a> Unpin for RequestBuilder<'a>
impl<'a> UnwindSafe for RequestBuilder<'a>
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<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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