pub struct ParamFlags {
pub by_ref: bool,
pub default: bool,
pub encrypted: bool,
}Expand description
RPC parameter status flags.
Fields§
§by_ref: boolParameter is passed by reference (OUTPUT parameter).
default: boolParameter has a default value.
encrypted: boolParameter is encrypted (Always Encrypted).
Implementations§
Trait Implementations§
Source§impl Clone for ParamFlags
impl Clone for ParamFlags
Source§fn clone(&self) -> ParamFlags
fn clone(&self) -> ParamFlags
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 moreSource§impl Debug for ParamFlags
impl Debug for ParamFlags
Source§impl Default for ParamFlags
impl Default for ParamFlags
Source§fn default() -> ParamFlags
fn default() -> ParamFlags
Returns the “default value” for a type. Read more
impl Copy for ParamFlags
Auto Trait Implementations§
impl Freeze for ParamFlags
impl RefUnwindSafe for ParamFlags
impl Send for ParamFlags
impl Sync for ParamFlags
impl Unpin for ParamFlags
impl UnwindSafe for ParamFlags
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