pub struct VarTypeMaxLenCompat;
Expand description
A type parameter for Connection::oci_attr
to get OCI_ATTR_VARTYPE_MAXLEN_COMPAT
as MaxStringSize
.
which controls the maximum size of VARCHAR2
, NVARCHAR
and RAW
.
This corresponds to the result of the following SQL statement when
a database user has a privilege to access v$parameter
.
select value from v$parameter where name = 'max_string_size'
Trait Implementations§
Source§impl Debug for VarTypeMaxLenCompat
impl Debug for VarTypeMaxLenCompat
Auto Trait Implementations§
impl Freeze for VarTypeMaxLenCompat
impl RefUnwindSafe for VarTypeMaxLenCompat
impl Send for VarTypeMaxLenCompat
impl Sync for VarTypeMaxLenCompat
impl Unpin for VarTypeMaxLenCompat
impl UnwindSafe for VarTypeMaxLenCompat
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