pub struct J2kQualityLayer {
pub target: J2kRateTarget,
}Expand description
One cumulative lossy quality layer request.
Fields§
§target: J2kRateTargetCumulative target for this quality layer.
Implementations§
Source§impl J2kQualityLayer
impl J2kQualityLayer
Sourcepub const fn new(target: J2kRateTarget) -> Self
pub const fn new(target: J2kRateTarget) -> Self
Create a cumulative lossy quality layer target.
Trait Implementations§
Source§impl Clone for J2kQualityLayer
impl Clone for J2kQualityLayer
Source§fn clone(&self) -> J2kQualityLayer
fn clone(&self) -> J2kQualityLayer
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 J2kQualityLayer
Source§impl Debug for J2kQualityLayer
impl Debug for J2kQualityLayer
Source§impl PartialEq for J2kQualityLayer
impl PartialEq for J2kQualityLayer
Source§fn eq(&self, other: &J2kQualityLayer) -> bool
fn eq(&self, other: &J2kQualityLayer) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for J2kQualityLayer
Auto Trait Implementations§
impl Freeze for J2kQualityLayer
impl RefUnwindSafe for J2kQualityLayer
impl Send for J2kQualityLayer
impl Sync for J2kQualityLayer
impl Unpin for J2kQualityLayer
impl UnsafeUnpin for J2kQualityLayer
impl UnwindSafe for J2kQualityLayer
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more