pub struct DiscoverByAttributesArgs {
pub attributes: HashMap<String, String>,
pub limit: Option<u32>,
pub offset: Option<u32>,
pub seek_permission: Option<bool>,
}Expand description
Arguments for discovering certificates by attributes.
Fields§
§attributes: HashMap<String, String>§limit: Option<u32>§offset: Option<u32>§seek_permission: Option<bool>Trait Implementations§
Source§impl Clone for DiscoverByAttributesArgs
impl Clone for DiscoverByAttributesArgs
Source§fn clone(&self) -> DiscoverByAttributesArgs
fn clone(&self) -> DiscoverByAttributesArgs
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 DiscoverByAttributesArgs
impl RefUnwindSafe for DiscoverByAttributesArgs
impl Send for DiscoverByAttributesArgs
impl Sync for DiscoverByAttributesArgs
impl Unpin for DiscoverByAttributesArgs
impl UnsafeUnpin for DiscoverByAttributesArgs
impl UnwindSafe for DiscoverByAttributesArgs
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