pub struct AgentIdentityFilter {
pub agent_registry: Option<String>,
pub agent_id: Option<String>,
pub agent_wallet: Option<String>,
pub owner_address: Option<String>,
pub agent_card_id: Option<Uuid>,
pub active: Option<bool>,
pub limit: Option<u32>,
pub offset: Option<u32>,
}Expand description
Filter for listing agent identities.
Fields§
§agent_registry: Option<String>§agent_id: Option<String>§agent_wallet: Option<String>§owner_address: Option<String>§agent_card_id: Option<Uuid>§active: Option<bool>§limit: Option<u32>§offset: Option<u32>Trait Implementations§
Source§impl Clone for AgentIdentityFilter
impl Clone for AgentIdentityFilter
Source§fn clone(&self) -> AgentIdentityFilter
fn clone(&self) -> AgentIdentityFilter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AgentIdentityFilter
impl Debug for AgentIdentityFilter
Source§impl Default for AgentIdentityFilter
impl Default for AgentIdentityFilter
Source§fn default() -> AgentIdentityFilter
fn default() -> AgentIdentityFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentIdentityFilter
impl<'de> Deserialize<'de> for AgentIdentityFilter
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AgentIdentityFilter, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AgentIdentityFilter, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AgentIdentityFilter
impl Serialize for AgentIdentityFilter
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for AgentIdentityFilter
impl RefUnwindSafe for AgentIdentityFilter
impl Send for AgentIdentityFilter
impl Sync for AgentIdentityFilter
impl Unpin for AgentIdentityFilter
impl UnsafeUnpin for AgentIdentityFilter
impl UnwindSafe for AgentIdentityFilter
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