pub struct ListReceivedInput {
pub agent_did: String,
pub limit: u32,
pub offset: u32,
pub source_type: Option<String>,
pub status: Option<String>,
}Expand description
Input for listing received messages
Fields§
§agent_did: StringThe DID of the agent whose received messages to list
limit: u32Maximum number of messages to return
offset: u32Number of messages to skip for pagination
source_type: Option<String>Filter by source type
status: Option<String>Filter by status
Trait Implementations§
Source§impl Debug for ListReceivedInput
impl Debug for ListReceivedInput
Source§impl<'de> Deserialize<'de> for ListReceivedInput
impl<'de> Deserialize<'de> for ListReceivedInput
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 ListReceivedInput
impl RefUnwindSafe for ListReceivedInput
impl Send for ListReceivedInput
impl Sync for ListReceivedInput
impl Unpin for ListReceivedInput
impl UnsafeUnpin for ListReceivedInput
impl UnwindSafe for ListReceivedInput
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more