pub struct RegisterSnapshot {
pub name: char,
pub text: String,
pub yank_type: YankTypeSnapshot,
}Expand description
Snapshot of a single register.
Fields§
§name: charRegister name (‘“’ for unnamed, ‘a’-‘z’ for named).
text: StringRegister text content.
yank_type: YankTypeSnapshotYank type.
Trait Implementations§
Source§impl Clone for RegisterSnapshot
impl Clone for RegisterSnapshot
Source§fn clone(&self) -> RegisterSnapshot
fn clone(&self) -> RegisterSnapshot
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 moreAuto Trait Implementations§
impl Freeze for RegisterSnapshot
impl RefUnwindSafe for RegisterSnapshot
impl Send for RegisterSnapshot
impl Sync for RegisterSnapshot
impl Unpin for RegisterSnapshot
impl UnsafeUnpin for RegisterSnapshot
impl UnwindSafe for RegisterSnapshot
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