pub struct AcceptInfo {
pub protocol_version: u16,
pub protocol_options: u16,
pub sdu: u32,
pub supports_fast_auth: bool,
pub supports_oob_check: bool,
pub supports_oob: bool,
pub supports_end_of_response: bool,
}Fields§
§protocol_version: u16§protocol_options: u16§sdu: u32§supports_fast_auth: bool§supports_oob_check: bool§supports_oob: boolWhether the server advertised out-of-band (urgent-TCP) break support in
the accept’s protocol_options (& TNS_GSO_CAN_RECV_ATTENTION), the
reference Capabilities.supports_oob (capabilities.pyx:121).
supports_end_of_response: boolTrait Implementations§
Source§impl Clone for AcceptInfo
impl Clone for AcceptInfo
Source§fn clone(&self) -> AcceptInfo
fn clone(&self) -> AcceptInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AcceptInfo
impl Debug for AcceptInfo
impl Eq for AcceptInfo
Source§impl PartialEq for AcceptInfo
impl PartialEq for AcceptInfo
Source§fn eq(&self, other: &AcceptInfo) -> bool
fn eq(&self, other: &AcceptInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AcceptInfo
Auto Trait Implementations§
impl Freeze for AcceptInfo
impl RefUnwindSafe for AcceptInfo
impl Send for AcceptInfo
impl Sync for AcceptInfo
impl Unpin for AcceptInfo
impl UnsafeUnpin for AcceptInfo
impl UnwindSafe for AcceptInfo
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