#[non_exhaustive]pub struct RoomSdkOptions {
pub sdk: String,
pub sdk_version: String,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.sdk: String§sdk_version: StringTrait Implementations§
Source§impl Clone for RoomSdkOptions
impl Clone for RoomSdkOptions
Source§fn clone(&self) -> RoomSdkOptions
fn clone(&self) -> RoomSdkOptions
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 RoomSdkOptions
impl Debug for RoomSdkOptions
Source§impl Default for RoomSdkOptions
impl Default for RoomSdkOptions
Source§impl From<RoomSdkOptions> for SignalSdkOptions
impl From<RoomSdkOptions> for SignalSdkOptions
Source§fn from(options: RoomSdkOptions) -> Self
fn from(options: RoomSdkOptions) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RoomSdkOptions
impl RefUnwindSafe for RoomSdkOptions
impl Send for RoomSdkOptions
impl Sync for RoomSdkOptions
impl Unpin for RoomSdkOptions
impl UnsafeUnpin for RoomSdkOptions
impl UnwindSafe for RoomSdkOptions
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