pub struct LobValue {
pub ora_type_num: u8,
pub csfrm: u8,
pub locator: Vec<u8>,
pub size: u64,
pub chunk_size: u32,
}Expand description
Heap payload of QueryValue::Lob (LOB / BFILE locator). Boxed out of the
enum — see QueryValue.
Fields§
§ora_type_num: u8§csfrm: u8§locator: Vec<u8>§size: u64§chunk_size: u32Trait Implementations§
impl StructuralPartialEq for LobValue
Auto Trait Implementations§
impl Freeze for LobValue
impl RefUnwindSafe for LobValue
impl Send for LobValue
impl Sync for LobValue
impl Unpin for LobValue
impl UnsafeUnpin for LobValue
impl UnwindSafe for LobValue
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