pub struct Query {Show 15 fields
pub record_type: Option<RecordType>,
pub account: Option<String>,
pub service: Option<String>,
pub server: Option<String>,
pub label: Option<String>,
pub path: Option<String>,
pub port: Option<u32>,
pub volume: Option<String>,
pub address: Option<String>,
pub signature: Option<String>,
pub description: Option<String>,
pub comment: Option<String>,
pub security_domain: Option<String>,
pub generic: Option<String>,
pub attributes: Vec<(String, String)>,
}Expand description
Attribute-match criteria for kc find <type>.
Fields§
§record_type: Option<RecordType>§account: Option<String>§service: Option<String>§server: Option<String>§label: Option<String>§path: Option<String>§port: Option<u32>§volume: Option<String>§address: Option<String>§signature: Option<String>§description: Option<String>desc, the “kind” Keychain Access shows.
comment: Option<String>icmt, the comment.
security_domain: Option<String>sdmn, an internet item’s authentication realm.
generic: Option<String>gena, a generic item’s application-defined bytes.
attributes: Vec<(String, String)>Any other attribute, by the name the relation gives it, compared against
the value as Item::display_attribute renders it. This is the escape
hatch for attributes without a flag of their own.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Query
impl RefUnwindSafe for Query
impl Send for Query
impl Sync for Query
impl Unpin for Query
impl UnsafeUnpin for Query
impl UnwindSafe for Query
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