pub enum ReadPresentation {
Semantic,
Display,
}Expand description
Controls whether read values preserve machine semantics or use TUI-oriented display formatting.
Variants§
Semantic
Return VT_BSTR contents exactly as stored by COM.
Display
Wrap VT_BSTR contents in quotes for human-readable display.
Trait Implementations§
Source§impl Clone for ReadPresentation
impl Clone for ReadPresentation
Source§fn clone(&self) -> ReadPresentation
fn clone(&self) -> ReadPresentation
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 ReadPresentation
Source§impl Debug for ReadPresentation
impl Debug for ReadPresentation
impl Eq for ReadPresentation
Source§impl PartialEq for ReadPresentation
impl PartialEq for ReadPresentation
impl StructuralPartialEq for ReadPresentation
Auto Trait Implementations§
impl Freeze for ReadPresentation
impl RefUnwindSafe for ReadPresentation
impl Send for ReadPresentation
impl Sync for ReadPresentation
impl Unpin for ReadPresentation
impl UnsafeUnpin for ReadPresentation
impl UnwindSafe for ReadPresentation
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