pub struct LargeBlobsConfig {
pub location: Location,
pub max_size: usize,
}Fields§
§location: LocationThe location for storing the large-blob array.
max_size: usizeThe maximum size for the large-blob array including metadata.
This value must be at least 1024 according to the CTAP2.1 spec. Without the chunking extension, it cannot be larger than 1024 because the large-blob array must fit into a Trussed message. Therefore, this setting is only available if the chunked feature is enabled.
Implementations§
Trait Implementations§
impl Copy for Config
impl Eq for Config
impl StructuralPartialEq for Config
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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