[−][src]Struct wayland_protocols::presentation_time::client::wp_presentation_feedback::Kind
bitmask of flags in presented event
These flags provide information about how the presentation of the related content update was done. The intent is to help clients assess the reliability of the feedback and the visual quality with respect to possible tearing and timings. The flags are:
VSYNC: The presentation was synchronized to the "vertical retrace" by the display hardware such that tearing does not happen. Relying on user space scheduling is not acceptable for this flag. If presentation is done by a copy to the active frontbuffer, then it must guarantee that tearing cannot happen.
HW_CLOCK: The display hardware provided measurements that the hardware driver converted into a presentation timestamp. Sampling a clock in user space is not acceptable for this flag.
HW_COMPLETION: The display hardware signalled that it started using the new image content. The opposite of this is e.g. a timer being used to guess when the display hardware has switched to the new image content.
ZERO_COPY: The presentation of this update was done zero-copy. This means the buffer from the client was given to display hardware as is, without copying it. Compositing with OpenGL counts as copying, even if textured directly from the client buffer. Possible zero-copy cases include direct scanout of a fullscreen surface and a surface on a hardware overlay.
Implementations
impl Kind
[src]
pub const Vsync: Kind
[src]
presentation was vsync'd
pub const HwClock: Kind
[src]
hardware provided the presentation timestamp
pub const HwCompletion: Kind
[src]
hardware signalled the start of the presentation
pub const ZeroCopy: Kind
[src]
presentation was done zero-copy
pub const fn empty() -> Kind
[src]
Returns an empty set of flags
pub const fn all() -> Kind
[src]
Returns the set containing all flags.
pub const fn bits(&self) -> u32
[src]
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u32) -> Option<Kind>
[src]
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: u32) -> Kind
[src]
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u32) -> Kind
[src]
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn is_empty(&self) -> bool
[src]
Returns true
if no flags are currently stored.
pub const fn is_all(&self) -> bool
[src]
Returns true
if all flags are currently set.
pub const fn intersects(&self, other: Kind) -> bool
[src]
Returns true
if there are flags common to both self
and other
.
pub const fn contains(&self, other: Kind) -> bool
[src]
Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: Kind)
[src]
Inserts the specified flags in-place.
pub fn remove(&mut self, other: Kind)
[src]
Removes the specified flags in-place.
pub fn toggle(&mut self, other: Kind)
[src]
Toggles the specified flags in-place.
pub fn set(&mut self, other: Kind, value: bool)
[src]
Inserts or removes the specified flags depending on the passed value.
impl Kind
[src]
Trait Implementations
impl Binary for Kind
[src]
impl BitAnd<Kind> for Kind
[src]
type Output = Kind
The resulting type after applying the &
operator.
fn bitand(self, other: Kind) -> Kind
[src]
Returns the intersection between the two sets of flags.
impl BitAndAssign<Kind> for Kind
[src]
fn bitand_assign(&mut self, other: Kind)
[src]
Disables all flags disabled in the set.
impl BitOr<Kind> for Kind
[src]
type Output = Kind
The resulting type after applying the |
operator.
fn bitor(self, other: Kind) -> Kind
[src]
Returns the union of the two sets of flags.
impl BitOrAssign<Kind> for Kind
[src]
fn bitor_assign(&mut self, other: Kind)
[src]
Adds the set of flags.
impl BitXor<Kind> for Kind
[src]
type Output = Kind
The resulting type after applying the ^
operator.
fn bitxor(self, other: Kind) -> Kind
[src]
Returns the left flags, but with all the right flags toggled.
impl BitXorAssign<Kind> for Kind
[src]
fn bitxor_assign(&mut self, other: Kind)
[src]
Toggles the set of flags.
impl Clone for Kind
[src]
impl Copy for Kind
[src]
impl Debug for Kind
[src]
impl Eq for Kind
[src]
impl Extend<Kind> for Kind
[src]
fn extend<T: IntoIterator<Item = Kind>>(&mut self, iterator: T)
[src]
fn extend_one(&mut self, item: A)
[src]
fn extend_reserve(&mut self, additional: usize)
[src]
impl FromIterator<Kind> for Kind
[src]
fn from_iter<T: IntoIterator<Item = Kind>>(iterator: T) -> Kind
[src]
impl Hash for Kind
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl LowerHex for Kind
[src]
impl Not for Kind
[src]
type Output = Kind
The resulting type after applying the !
operator.
fn not(self) -> Kind
[src]
Returns the complement of this set of flags.
impl Octal for Kind
[src]
impl Ord for Kind
[src]
fn cmp(&self, other: &Kind) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<Kind> for Kind
[src]
impl PartialOrd<Kind> for Kind
[src]
fn partial_cmp(&self, other: &Kind) -> Option<Ordering>
[src]
fn lt(&self, other: &Kind) -> bool
[src]
fn le(&self, other: &Kind) -> bool
[src]
fn gt(&self, other: &Kind) -> bool
[src]
fn ge(&self, other: &Kind) -> bool
[src]
impl StructuralEq for Kind
[src]
impl StructuralPartialEq for Kind
[src]
impl Sub<Kind> for Kind
[src]
type Output = Kind
The resulting type after applying the -
operator.
fn sub(self, other: Kind) -> Kind
[src]
Returns the set difference of the two sets of flags.
impl SubAssign<Kind> for Kind
[src]
fn sub_assign(&mut self, other: Kind)
[src]
Disables all flags enabled in the set.
impl UpperHex for Kind
[src]
Auto Trait Implementations
impl RefUnwindSafe for Kind
impl Send for Kind
impl Sync for Kind
impl Unpin for Kind
impl UnwindSafe for Kind
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Downcast for T where
T: Any,
T: Any,
fn into_any(self: Box<T>) -> Box<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn as_any(&self) -> &(dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> DowncastSync for T where
T: Send + Sync + Any,
T: Send + Sync + Any,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,