pub struct MessageStream {
pub id: String,
pub server_id: MessageStreamServerId,
pub name: String,
pub description: Option<String>,
pub message_stream_type: MessageStreamType,
pub created_at: String,
pub updated_at: Option<String>,
pub archived_at: Option<String>,
pub expected_purge_date: Option<String>,
pub subscription_management_configuration: SubscriptionManagementConfiguration,
}Fields§
§id: String§server_id: MessageStreamServerId§name: String§description: Option<String>§message_stream_type: MessageStreamType§created_at: String§updated_at: Option<String>§archived_at: Option<String>§expected_purge_date: Option<String>§subscription_management_configuration: SubscriptionManagementConfigurationTrait Implementations§
Source§impl Clone for MessageStream
impl Clone for MessageStream
Source§fn clone(&self) -> MessageStream
fn clone(&self) -> MessageStream
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 MessageStream
impl Debug for MessageStream
Source§impl<'de> Deserialize<'de> for MessageStream
impl<'de> Deserialize<'de> for MessageStream
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 MessageStream
impl PartialEq for MessageStream
Source§fn eq(&self, other: &MessageStream) -> bool
fn eq(&self, other: &MessageStream) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MessageStream
impl Serialize for MessageStream
impl StructuralPartialEq for MessageStream
Auto Trait Implementations§
impl Freeze for MessageStream
impl RefUnwindSafe for MessageStream
impl Send for MessageStream
impl Sync for MessageStream
impl Unpin for MessageStream
impl UnsafeUnpin for MessageStream
impl UnwindSafe for MessageStream
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