pub struct Row { /* private fields */ }Expand description
Container for the members of a sys::SRow structure. The sys::SPropValue pointer should
be freed in the destructor with a call to sys::MAPIFreeBuffer.
Typically, the memory for the sys::SRow itself is still owned by an sys::SRowSet
allocation, but the sys::SRow::lpProps member is a separate allocation. Row copies the
sys::SRow::cValues member and takes ownership of the sys::SRow::lpProps pointer away
from the sys::SRow, leaving both sys::SRow members empty in the source structure.
Implementations§
Trait Implementations§
Source§impl Drop for Row
impl Drop for Row
Source§fn drop(&mut self)
fn drop(&mut self)
Free the sys::SPropValue pointer with sys::MAPIFreeBuffer.
Auto Trait Implementations§
impl Freeze for Row
impl RefUnwindSafe for Row
impl !Send for Row
impl !Sync for Row
impl Unpin for Row
impl UnwindSafe for Row
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