pub struct FlowHandleCallbackConfiguration {
pub code_verifier: Option<CodeVerifier>,
}
Fields
code_verifier: Option<CodeVerifier>
Implementations
sourceimpl FlowHandleCallbackConfiguration
impl FlowHandleCallbackConfiguration
pub fn new() -> Self
pub fn configure<F>(self, f: F) -> Self where
F: FnMut(&mut Self),
pub fn set_code_verifier(&mut self, code_verifier: CodeVerifier)
Trait Implementations
sourceimpl Clone for FlowHandleCallbackConfiguration
impl Clone for FlowHandleCallbackConfiguration
sourcefn clone(&self) -> FlowHandleCallbackConfiguration
fn clone(&self) -> FlowHandleCallbackConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for FlowHandleCallbackConfiguration
impl Default for FlowHandleCallbackConfiguration
sourcefn default() -> FlowHandleCallbackConfiguration
fn default() -> FlowHandleCallbackConfiguration
Returns the “default value” for a type. Read more
sourceimpl From<FlowHandleCallbackByQueryConfiguration> for FlowHandleCallbackConfiguration
impl From<FlowHandleCallbackByQueryConfiguration> for FlowHandleCallbackConfiguration
sourcefn from(c: FlowHandleCallbackByQueryConfiguration) -> Self
fn from(c: FlowHandleCallbackByQueryConfiguration) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for FlowHandleCallbackConfiguration
impl Send for FlowHandleCallbackConfiguration
impl Sync for FlowHandleCallbackConfiguration
impl Unpin for FlowHandleCallbackConfiguration
impl UnwindSafe for FlowHandleCallbackConfiguration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more