pub struct RegisteredClient {
pub name: String,
pub client: String,
pub other: Vec<u8>,
pub adress: Adress,
pub ports: Vec<u16>,
pub to_connect: Vec<Connecting>,
pub privacy: bool,
pub private_adress: String,
}Fields§
§name: String§client: String§other: Vec<u8>§adress: Adress§ports: Vec<u16>§to_connect: Vec<Connecting>§privacy: bool§private_adress: StringTrait Implementations§
Source§impl Clone for RegisteredClient
impl Clone for RegisteredClient
Source§fn clone(&self) -> RegisteredClient
fn clone(&self) -> RegisteredClient
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 RegisteredClient
impl Debug for RegisteredClient
Source§impl PartialEq for RegisteredClient
impl PartialEq for RegisteredClient
impl StructuralPartialEq for RegisteredClient
Auto Trait Implementations§
impl Freeze for RegisteredClient
impl RefUnwindSafe for RegisteredClient
impl Send for RegisteredClient
impl Sync for RegisteredClient
impl Unpin for RegisteredClient
impl UnwindSafe for RegisteredClient
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