pub enum PayloadPart {
All,
Input,
Result,
}Expand description
Which payloads a yank takes.
Variants§
All
Everything the row carries.
Input
Arguments only: input, or input[0], input[1] … when there are several.
Result
The return value only.
Trait Implementations§
Source§impl Clone for PayloadPart
impl Clone for PayloadPart
Source§fn clone(&self) -> PayloadPart
fn clone(&self) -> PayloadPart
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 PayloadPart
Source§impl Debug for PayloadPart
impl Debug for PayloadPart
impl Eq for PayloadPart
Source§impl Hash for PayloadPart
impl Hash for PayloadPart
Source§impl PartialEq for PayloadPart
impl PartialEq for PayloadPart
impl StructuralPartialEq for PayloadPart
Auto Trait Implementations§
impl Freeze for PayloadPart
impl RefUnwindSafe for PayloadPart
impl Send for PayloadPart
impl Sync for PayloadPart
impl Unpin for PayloadPart
impl UnsafeUnpin for PayloadPart
impl UnwindSafe for PayloadPart
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