pub struct AppCheckOptions {
pub provider: Arc<dyn AppCheckProvider>,
pub is_token_auto_refresh_enabled: Option<bool>,
}Fields§
§provider: Arc<dyn AppCheckProvider>§is_token_auto_refresh_enabled: Option<bool>Implementations§
Source§impl AppCheckOptions
impl AppCheckOptions
pub fn new(provider: Arc<dyn AppCheckProvider>) -> Self
pub fn with_auto_refresh(self, enabled: bool) -> Self
Trait Implementations§
Source§impl Clone for AppCheckOptions
impl Clone for AppCheckOptions
Source§fn clone(&self) -> AppCheckOptions
fn clone(&self) -> AppCheckOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AppCheckOptions
impl !RefUnwindSafe for AppCheckOptions
impl Send for AppCheckOptions
impl Sync for AppCheckOptions
impl Unpin for AppCheckOptions
impl !UnwindSafe for AppCheckOptions
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