Enum ruma_common::events::call::SessionDescriptionType
source · #[non_exhaustive]
pub enum SessionDescriptionType {
Answer,
Offer,
PrAnswer,
Rollback,
// some variants omitted
}Available on crate feature
events only.Expand description
The type of VoIP session description.
This is the same type as WebRTC’s RTCSdpType.
This type can hold an arbitrary string. To build this with a custom value, convert it from a
string with ::from() / .into(). To check for values that are not available as a
documented variant here, use its string representation, obtained through
.as_str().
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Answer
The description must be treated as an SDP final answer, and the offer-answer exchange must be considered complete.
Offer
The description must be treated as an SDP offer.
PrAnswer
Available on crate feature
unstable-msc2746 only.The description must be treated as an SDP answer, but not final.
Rollback
Available on crate feature
unstable-msc2746 only.The description must be treated as cancelling the current SDP negotiation and moving the SDP offer back to what it was in the previous stable state.
Implementations§
Trait Implementations§
source§impl AsRef<str> for SessionDescriptionType
impl AsRef<str> for SessionDescriptionType
source§impl Clone for SessionDescriptionType
impl Clone for SessionDescriptionType
source§fn clone(&self) -> SessionDescriptionType
fn clone(&self) -> SessionDescriptionType
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 SessionDescriptionType
impl Debug for SessionDescriptionType
source§impl<'de> Deserialize<'de> for SessionDescriptionType
impl<'de> Deserialize<'de> for SessionDescriptionType
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 Display for SessionDescriptionType
impl Display for SessionDescriptionType
source§impl PartialEq<SessionDescriptionType> for SessionDescriptionType
impl PartialEq<SessionDescriptionType> for SessionDescriptionType
source§fn eq(&self, other: &SessionDescriptionType) -> bool
fn eq(&self, other: &SessionDescriptionType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for SessionDescriptionType
impl Serialize for SessionDescriptionType
impl Eq for SessionDescriptionType
impl StructuralEq for SessionDescriptionType
impl StructuralPartialEq for SessionDescriptionType
Auto Trait Implementations§
impl RefUnwindSafe for SessionDescriptionType
impl Send for SessionDescriptionType
impl Sync for SessionDescriptionType
impl Unpin for SessionDescriptionType
impl UnwindSafe for SessionDescriptionType
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.