pub struct RoomServerAccess {
pub public_url: Url,
pub token: Token,
}Fields§
§public_url: UrlThe public url for the roomserver with the requested room
token: TokenThe signaling token for the requested room
Trait Implementations§
Source§impl Debug for RoomServerAccess
impl Debug for RoomServerAccess
Source§impl<'de> Deserialize<'de> for RoomServerAccess
impl<'de> Deserialize<'de> for RoomServerAccess
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
impl Eq for RoomServerAccess
Source§impl ExampleData for RoomServerAccess
impl ExampleData for RoomServerAccess
Source§fn example_data() -> Self
fn example_data() -> Self
Get an example instance of the current datatype.
Source§impl PartialEq for RoomServerAccess
impl PartialEq for RoomServerAccess
Source§impl Serialize for RoomServerAccess
impl Serialize for RoomServerAccess
impl StructuralPartialEq for RoomServerAccess
Auto Trait Implementations§
impl Freeze for RoomServerAccess
impl RefUnwindSafe for RoomServerAccess
impl Send for RoomServerAccess
impl Sync for RoomServerAccess
impl Unpin for RoomServerAccess
impl UnsafeUnpin for RoomServerAccess
impl UnwindSafe for RoomServerAccess
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<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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