pub struct TOpenSessionReq {
pub client_protocol: TProtocolVersion,
pub username: Option<String>,
pub password: Option<String>,
pub configuration: Option<BTreeMap<String, String>>,
}
Fields§
§client_protocol: TProtocolVersion
§username: Option<String>
§password: Option<String>
§configuration: Option<BTreeMap<String, String>>
Implementations§
Trait Implementations§
Source§impl Clone for TOpenSessionReq
impl Clone for TOpenSessionReq
Source§fn clone(&self) -> TOpenSessionReq
fn clone(&self) -> TOpenSessionReq
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 TOpenSessionReq
impl Debug for TOpenSessionReq
Source§impl Hash for TOpenSessionReq
impl Hash for TOpenSessionReq
Source§impl Ord for TOpenSessionReq
impl Ord for TOpenSessionReq
Source§fn cmp(&self, other: &TOpenSessionReq) -> Ordering
fn cmp(&self, other: &TOpenSessionReq) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TOpenSessionReq
impl PartialEq for TOpenSessionReq
Source§impl PartialOrd for TOpenSessionReq
impl PartialOrd for TOpenSessionReq
Source§impl TSerializable for TOpenSessionReq
impl TSerializable for TOpenSessionReq
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TOpenSessionReq>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TOpenSessionReq
impl StructuralPartialEq for TOpenSessionReq
Auto Trait Implementations§
impl Freeze for TOpenSessionReq
impl RefUnwindSafe for TOpenSessionReq
impl Send for TOpenSessionReq
impl Sync for TOpenSessionReq
impl Unpin for TOpenSessionReq
impl UnwindSafe for TOpenSessionReq
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