pub struct SendPayloadTooLarge { /* private fields */ }Expand description
Payload for PacketBuildError::SendPayloadTooLarge.
A compressed payload on its way into FFmpeg is larger than the session’s budget allows.
Named for the direction: this is the send leg. Its outbound twin is
PacketBufferError::PacketTooLarge,
which judges the same quantity coming the other way, against the
same seat.
Implementations§
Trait Implementations§
Source§impl Clone for SendPayloadTooLarge
impl Clone for SendPayloadTooLarge
Source§fn clone(&self) -> SendPayloadTooLarge
fn clone(&self) -> SendPayloadTooLarge
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SendPayloadTooLarge
Source§impl Debug for SendPayloadTooLarge
impl Debug for SendPayloadTooLarge
Source§impl Display for SendPayloadTooLarge
impl Display for SendPayloadTooLarge
impl Eq for SendPayloadTooLarge
Source§impl Error for SendPayloadTooLarge
impl Error for SendPayloadTooLarge
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<SendPayloadTooLarge> for PacketBuildError
impl From<SendPayloadTooLarge> for PacketBuildError
Source§fn from(source: SendPayloadTooLarge) -> Self
fn from(source: SendPayloadTooLarge) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SendPayloadTooLarge
impl PartialEq for SendPayloadTooLarge
impl StructuralPartialEq for SendPayloadTooLarge
Auto Trait Implementations§
impl Freeze for SendPayloadTooLarge
impl RefUnwindSafe for SendPayloadTooLarge
impl Send for SendPayloadTooLarge
impl Sync for SendPayloadTooLarge
impl Unpin for SendPayloadTooLarge
impl UnsafeUnpin for SendPayloadTooLarge
impl UnwindSafe for SendPayloadTooLarge
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