pub enum UpdateSendEncodingError {
EncodingsLengthsMismatch {
current: usize,
new: usize,
},
SetSenderParameters(Error),
}
Expand description
Possible errors of Transceiver::update_send_encodings()
.
Variants§
EncodingsLengthsMismatch
platform::SendEncodingParameters
list cannot be modified via
Transceiver::set_send_parameters()
.
Fields
§
current: usize
Number of proto::EncodingParameters
stored in sender.
§
new: usize
Length of updated proto::EncodingParameters
list.
SetSenderParameters(Error)
RTCRtpSender.setParameters() error.
Trait Implementations§
Source§impl Clone for UpdateSendEncodingError
impl Clone for UpdateSendEncodingError
Source§fn clone(&self) -> UpdateSendEncodingError
fn clone(&self) -> UpdateSendEncodingError
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 UpdateSendEncodingError
impl Debug for UpdateSendEncodingError
Source§impl Display for UpdateSendEncodingError
impl Display for UpdateSendEncodingError
Auto Trait Implementations§
impl Freeze for UpdateSendEncodingError
impl RefUnwindSafe for UpdateSendEncodingError
impl !Send for UpdateSendEncodingError
impl !Sync for UpdateSendEncodingError
impl Unpin for UpdateSendEncodingError
impl UnwindSafe for UpdateSendEncodingError
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