pub struct InboxServiceUpdateInboxRequest {
pub sender: Option<String>,
pub receiver: Option<String>,
pub status: Option<V1InboxStatus>,
pub create_time: Option<String>,
pub type: Option<V1InboxType>,
pub activity_id: Option<i32>,
}
Fields§
§sender: Option<String>
§receiver: Option<String>
§status: Option<V1InboxStatus>
§create_time: Option<String>
§type: Option<V1InboxType>
§activity_id: Option<i32>
Implementations§
Trait Implementations§
Source§impl Clone for InboxServiceUpdateInboxRequest
impl Clone for InboxServiceUpdateInboxRequest
Source§fn clone(&self) -> InboxServiceUpdateInboxRequest
fn clone(&self) -> InboxServiceUpdateInboxRequest
Returns a copy 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 moreSource§impl Default for InboxServiceUpdateInboxRequest
impl Default for InboxServiceUpdateInboxRequest
Source§fn default() -> InboxServiceUpdateInboxRequest
fn default() -> InboxServiceUpdateInboxRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InboxServiceUpdateInboxRequest
impl<'de> Deserialize<'de> for InboxServiceUpdateInboxRequest
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
Source§impl PartialEq for InboxServiceUpdateInboxRequest
impl PartialEq for InboxServiceUpdateInboxRequest
Source§fn eq(&self, other: &InboxServiceUpdateInboxRequest) -> bool
fn eq(&self, other: &InboxServiceUpdateInboxRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for InboxServiceUpdateInboxRequest
Auto Trait Implementations§
impl Freeze for InboxServiceUpdateInboxRequest
impl RefUnwindSafe for InboxServiceUpdateInboxRequest
impl Send for InboxServiceUpdateInboxRequest
impl Sync for InboxServiceUpdateInboxRequest
impl Unpin for InboxServiceUpdateInboxRequest
impl UnwindSafe for InboxServiceUpdateInboxRequest
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