Struct vapoursynth::api::MessageHandlerId
source · [−]pub struct MessageHandlerId(_);
Expand description
ID of a unique, registered VapourSynth message handler.
This ID is returned from add_message_handler
and add_message_handler_trivial
and can be
used to remove the message handler using remove_message_handler
.
Trait Implementations
sourceimpl Clone for MessageHandlerId
impl Clone for MessageHandlerId
sourcefn clone(&self) -> MessageHandlerId
fn clone(&self) -> MessageHandlerId
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MessageHandlerId
impl Debug for MessageHandlerId
sourceimpl Hash for MessageHandlerId
impl Hash for MessageHandlerId
sourceimpl PartialEq<MessageHandlerId> for MessageHandlerId
impl PartialEq<MessageHandlerId> for MessageHandlerId
sourcefn eq(&self, other: &MessageHandlerId) -> bool
fn eq(&self, other: &MessageHandlerId) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MessageHandlerId) -> bool
fn ne(&self, other: &MessageHandlerId) -> bool
This method tests for !=
.
impl Copy for MessageHandlerId
impl Eq for MessageHandlerId
impl StructuralEq for MessageHandlerId
impl StructuralPartialEq for MessageHandlerId
Auto Trait Implementations
impl RefUnwindSafe for MessageHandlerId
impl Send for MessageHandlerId
impl Sync for MessageHandlerId
impl Unpin for MessageHandlerId
impl UnwindSafe for MessageHandlerId
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more