Enum vapoursynth4_sys::VSMessageType
source · #[repr(C)]pub enum VSMessageType {
mtDebug,
mtInformation,
mtWarning,
mtCritical,
mtFatal,
}Variants§
mtDebug
mtInformation
mtWarning
mtCritical
mtFatal
also terminates the process, should generally not be used by normal filters
Trait Implementations§
source§impl Clone for VSMessageType
impl Clone for VSMessageType
source§fn clone(&self) -> VSMessageType
fn clone(&self) -> VSMessageType
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 VSMessageType
impl Debug for VSMessageType
source§impl Hash for VSMessageType
impl Hash for VSMessageType
source§impl Ord for VSMessageType
impl Ord for VSMessageType
source§fn cmp(&self, other: &VSMessageType) -> Ordering
fn cmp(&self, other: &VSMessageType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<VSMessageType> for VSMessageType
impl PartialEq<VSMessageType> for VSMessageType
source§fn eq(&self, other: &VSMessageType) -> bool
fn eq(&self, other: &VSMessageType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<VSMessageType> for VSMessageType
impl PartialOrd<VSMessageType> for VSMessageType
source§fn partial_cmp(&self, other: &VSMessageType) -> Option<Ordering>
fn partial_cmp(&self, other: &VSMessageType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for VSMessageType
impl Eq for VSMessageType
impl StructuralEq for VSMessageType
impl StructuralPartialEq for VSMessageType
Auto Trait Implementations§
impl RefUnwindSafe for VSMessageType
impl Send for VSMessageType
impl Sync for VSMessageType
impl Unpin for VSMessageType
impl UnwindSafe for VSMessageType
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