pub struct RemoteSocket {
pub exists: Option<bool>,
pub path: Option<String>,
}
Expand description
RemoteSocket : RemoteSocket describes information about the API socket
Fields§
§exists: Option<bool>
§path: Option<String>
Implementations§
Source§impl RemoteSocket
impl RemoteSocket
Sourcepub fn new() -> RemoteSocket
pub fn new() -> RemoteSocket
RemoteSocket describes information about the API socket
Trait Implementations§
Source§impl Clone for RemoteSocket
impl Clone for RemoteSocket
Source§fn clone(&self) -> RemoteSocket
fn clone(&self) -> RemoteSocket
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 Debug for RemoteSocket
impl Debug for RemoteSocket
Source§impl Default for RemoteSocket
impl Default for RemoteSocket
Source§fn default() -> RemoteSocket
fn default() -> RemoteSocket
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteSocket
impl<'de> Deserialize<'de> for RemoteSocket
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RemoteSocket
impl PartialEq for RemoteSocket
Source§impl Serialize for RemoteSocket
impl Serialize for RemoteSocket
impl StructuralPartialEq for RemoteSocket
Auto Trait Implementations§
impl Freeze for RemoteSocket
impl RefUnwindSafe for RemoteSocket
impl Send for RemoteSocket
impl Sync for RemoteSocket
impl Unpin for RemoteSocket
impl UnwindSafe for RemoteSocket
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