pub struct SendbirdSyevEvent {
pub channel_id: Option<String>,
pub cat: i32,
pub data: Option<SendbirdSyevUserData>,
pub sts: String,
pub ts: String,
pub channel_url: String,
pub channel_type: String,
pub is_super: bool,
pub is_access_code_required: bool,
pub has_bot: bool,
pub has_ai_bot: bool,
}Fields§
§channel_id: Option<String>§cat: i32§data: Option<SendbirdSyevUserData>§sts: String§ts: String§channel_url: String§channel_type: String§is_super: bool§is_access_code_required: bool§has_bot: bool§has_ai_bot: boolImplementations§
Source§impl SendbirdSyevEvent
impl SendbirdSyevEvent
pub const CATEGORY_TYPING_START: i32 = 10900
pub const CATEGORY_TYPING_END: i32 = 10901
Trait Implementations§
Source§impl Clone for SendbirdSyevEvent
impl Clone for SendbirdSyevEvent
Source§fn clone(&self) -> SendbirdSyevEvent
fn clone(&self) -> SendbirdSyevEvent
Returns a duplicate 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 Debug for SendbirdSyevEvent
impl Debug for SendbirdSyevEvent
Source§impl<'de> Deserialize<'de> for SendbirdSyevEvent
impl<'de> Deserialize<'de> for SendbirdSyevEvent
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 JsonSchema for SendbirdSyevEvent
impl JsonSchema for SendbirdSyevEvent
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for SendbirdSyevEvent
impl PartialEq for SendbirdSyevEvent
Source§impl Serialize for SendbirdSyevEvent
impl Serialize for SendbirdSyevEvent
impl StructuralPartialEq for SendbirdSyevEvent
Auto Trait Implementations§
impl Freeze for SendbirdSyevEvent
impl RefUnwindSafe for SendbirdSyevEvent
impl Send for SendbirdSyevEvent
impl Sync for SendbirdSyevEvent
impl Unpin for SendbirdSyevEvent
impl UnsafeUnpin for SendbirdSyevEvent
impl UnwindSafe for SendbirdSyevEvent
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