#[repr(u8)]pub enum NegotiationType {
TypeRDPNegReq = 1,
TypeRDPNegRsp = 2,
TypeRDPNegFailure = 3,
}
Variants§
TypeRDPNegReq = 1
Negotiation Request Send from client to server
TypeRDPNegRsp = 2
Negotiation Response Send from Server to client
TypeRDPNegFailure = 3
Negotiation failure Send when security level are not expected Server ask for NLA and client doesn’t support it
Trait Implementations§
Source§impl Clone for NegotiationType
impl Clone for NegotiationType
Source§fn clone(&self) -> NegotiationType
fn clone(&self) -> NegotiationType
Returns a copy 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 TryFrom<u8> for NegotiationType
impl TryFrom<u8> for NegotiationType
Source§type Error = TryFromPrimitiveError<NegotiationType>
type Error = TryFromPrimitiveError<NegotiationType>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for NegotiationType
impl TryFromPrimitive for NegotiationType
impl Copy for NegotiationType
Auto Trait Implementations§
impl Freeze for NegotiationType
impl RefUnwindSafe for NegotiationType
impl Send for NegotiationType
impl Sync for NegotiationType
impl Unpin for NegotiationType
impl UnwindSafe for NegotiationType
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