#[repr(u64)]pub enum NSApplicationDelegateReply {
Success = 0,
Cancel = 1,
Failure = 2,
}Expand description
Constants that indicate whether a copy or print operation was successful, was canceled, or failed.
Variants§
Success = 0
Indicates the operation succeeded.
Cancel = 1
Indicates the user cancelled the operation.
Failure = 2
Indicates an error occurred processing the operation.
Trait Implementations§
Source§impl Clone for NSApplicationDelegateReply
impl Clone for NSApplicationDelegateReply
Source§fn clone(&self) -> NSApplicationDelegateReply
fn clone(&self) -> NSApplicationDelegateReply
Returns a duplicate 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 NSApplicationDelegateReply
impl Debug for NSApplicationDelegateReply
impl Copy for NSApplicationDelegateReply
impl Eq for NSApplicationDelegateReply
impl StructuralPartialEq for NSApplicationDelegateReply
Auto Trait Implementations§
impl Freeze for NSApplicationDelegateReply
impl RefUnwindSafe for NSApplicationDelegateReply
impl Send for NSApplicationDelegateReply
impl Sync for NSApplicationDelegateReply
impl Unpin for NSApplicationDelegateReply
impl UnwindSafe for NSApplicationDelegateReply
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