pub struct ConnectionGetAllOptions {
pub alias: Option<String>,
pub connection_protocol: Option<String>,
pub invitation_key: Option<String>,
pub my_did: Option<String>,
pub state: Option<String>,
pub their_did: Option<String>,
pub their_role: Option<String>,
}Expand description
Query filters applied to retrieving all the connections
Fields§
§alias: Option<String>Optional alias to filter on
connection_protocol: Option<String>Optional connection protocol to filter on
invitation_key: Option<String>Optional invitation key to filter on
my_did: Option<String>Optional my did to filter on
state: Option<String>Optional state to filter on
their_did: Option<String>Optional their did to filter on
their_role: Option<String>Optional their role to filter on
Trait Implementations§
Source§impl Debug for ConnectionGetAllOptions
impl Debug for ConnectionGetAllOptions
Source§impl Default for ConnectionGetAllOptions
impl Default for ConnectionGetAllOptions
Source§fn default() -> ConnectionGetAllOptions
fn default() -> ConnectionGetAllOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConnectionGetAllOptions
impl<'de> Deserialize<'de> for ConnectionGetAllOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ConnectionGetAllOptions
impl RefUnwindSafe for ConnectionGetAllOptions
impl Send for ConnectionGetAllOptions
impl Sync for ConnectionGetAllOptions
impl Unpin for ConnectionGetAllOptions
impl UnwindSafe for ConnectionGetAllOptions
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