pub struct SrtpParameters {
pub crypto_suite: SrtpCryptoSuite,
pub key_base64: String,
}
Expand description
The table SrtpParameters
in the namespace FBS.SrtpParameters
Generated from these locations:
- Table
SrtpParameters
in the filefbs/srtpParameters.fbs:10
Fields§
§crypto_suite: SrtpCryptoSuite
The field crypto_suite
in the table SrtpParameters
key_base64: String
The field key_base64
in the table SrtpParameters
Implementations§
Source§impl SrtpParameters
impl SrtpParameters
Sourcepub fn builder() -> SrtpParametersBuilder<()>
pub fn builder() -> SrtpParametersBuilder<()>
Creates a SrtpParametersBuilder for serializing an instance of this table.
pub fn create( builder: &mut Builder, field_crypto_suite: impl WriteAsDefault<SrtpCryptoSuite, SrtpCryptoSuite>, field_key_base64: impl WriteAs<Offset<str>>, ) -> Offset<Self>
Trait Implementations§
Source§impl Clone for SrtpParameters
impl Clone for SrtpParameters
Source§fn clone(&self) -> SrtpParameters
fn clone(&self) -> SrtpParameters
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 SrtpParameters
impl Debug for SrtpParameters
Source§impl<'de> Deserialize<'de> for SrtpParameters
impl<'de> Deserialize<'de> for SrtpParameters
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 SrtpParameters
impl Hash for SrtpParameters
Source§impl Ord for SrtpParameters
impl Ord for SrtpParameters
Source§fn cmp(&self, other: &SrtpParameters) -> Ordering
fn cmp(&self, other: &SrtpParameters) -> 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 SrtpParameters
impl PartialEq for SrtpParameters
Source§impl PartialOrd for SrtpParameters
impl PartialOrd for SrtpParameters
Source§impl Serialize for SrtpParameters
impl Serialize for SrtpParameters
Source§impl<'a> TryFrom<SrtpParametersRef<'a>> for SrtpParameters
impl<'a> TryFrom<SrtpParametersRef<'a>> for SrtpParameters
impl Eq for SrtpParameters
impl StructuralPartialEq for SrtpParameters
impl VectorWrite<Offset<SrtpParameters>> for SrtpParameters
impl WriteAs<Offset<SrtpParameters>> for SrtpParameters
impl WriteAsOffset<SrtpParameters> for SrtpParameters
impl<T0: WriteAsDefault<SrtpCryptoSuite, SrtpCryptoSuite>, T1: WriteAs<Offset<str>>> WriteAsOffset<SrtpParameters> for SrtpParametersBuilder<(T0, T1)>
impl WriteAsOptional<Offset<SrtpParameters>> for SrtpParameters
Auto Trait Implementations§
impl Freeze for SrtpParameters
impl RefUnwindSafe for SrtpParameters
impl Send for SrtpParameters
impl Sync for SrtpParameters
impl Unpin for SrtpParameters
impl UnwindSafe for SrtpParameters
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