pub struct RestartIceResponse {
pub username_fragment: String,
pub password: String,
pub ice_lite: bool,
}
Expand description
The table RestartIceResponse
in the namespace FBS.Transport
Generated from these locations:
- Table
RestartIceResponse
in the filefbs/transport.fbs:37
Fields§
§username_fragment: String
The field username_fragment
in the table RestartIceResponse
password: String
The field password
in the table RestartIceResponse
ice_lite: bool
The field ice_lite
in the table RestartIceResponse
Implementations§
Source§impl RestartIceResponse
impl RestartIceResponse
Sourcepub fn builder() -> RestartIceResponseBuilder<()>
pub fn builder() -> RestartIceResponseBuilder<()>
Creates a RestartIceResponseBuilder for serializing an instance of this table.
pub fn create( builder: &mut Builder, field_username_fragment: impl WriteAs<Offset<str>>, field_password: impl WriteAs<Offset<str>>, field_ice_lite: impl WriteAsDefault<bool, bool>, ) -> Offset<Self>
Trait Implementations§
Source§impl Clone for RestartIceResponse
impl Clone for RestartIceResponse
Source§fn clone(&self) -> RestartIceResponse
fn clone(&self) -> RestartIceResponse
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 Debug for RestartIceResponse
impl Debug for RestartIceResponse
Source§impl<'de> Deserialize<'de> for RestartIceResponse
impl<'de> Deserialize<'de> for RestartIceResponse
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 Hash for RestartIceResponse
impl Hash for RestartIceResponse
Source§impl Ord for RestartIceResponse
impl Ord for RestartIceResponse
Source§fn cmp(&self, other: &RestartIceResponse) -> Ordering
fn cmp(&self, other: &RestartIceResponse) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RestartIceResponse
impl PartialEq for RestartIceResponse
Source§impl PartialOrd for RestartIceResponse
impl PartialOrd for RestartIceResponse
Source§impl Serialize for RestartIceResponse
impl Serialize for RestartIceResponse
Source§impl<'a> TryFrom<RestartIceResponseRef<'a>> for RestartIceResponse
impl<'a> TryFrom<RestartIceResponseRef<'a>> for RestartIceResponse
impl Eq for RestartIceResponse
impl StructuralPartialEq for RestartIceResponse
impl VectorWrite<Offset<RestartIceResponse>> for RestartIceResponse
impl WriteAs<Offset<RestartIceResponse>> for RestartIceResponse
impl WriteAsOffset<RestartIceResponse> for RestartIceResponse
impl<T0: WriteAs<Offset<str>>, T1: WriteAs<Offset<str>>, T2: WriteAsDefault<bool, bool>> WriteAsOffset<RestartIceResponse> for RestartIceResponseBuilder<(T0, T1, T2)>
impl WriteAsOptional<Offset<RestartIceResponse>> for RestartIceResponse
Auto Trait Implementations§
impl Freeze for RestartIceResponse
impl RefUnwindSafe for RestartIceResponse
impl Send for RestartIceResponse
impl Sync for RestartIceResponse
impl Unpin for RestartIceResponse
impl UnwindSafe for RestartIceResponse
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