pub struct RemoteServerStarted {
pub listen_addr: String,
pub connect_urls: Vec<String>,
pub token_preview: String,
pub timestamp: OffsetDateTime,
}Fields§
§listen_addr: String§connect_urls: Vec<String>§token_preview: String§timestamp: OffsetDateTimeTrait Implementations§
Source§impl Clone for RemoteServerStarted
impl Clone for RemoteServerStarted
Source§fn clone(&self) -> RemoteServerStarted
fn clone(&self) -> RemoteServerStarted
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 RemoteServerStarted
impl Debug for RemoteServerStarted
Source§impl<'de> Deserialize<'de> for RemoteServerStarted
impl<'de> Deserialize<'de> for RemoteServerStarted
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
Auto Trait Implementations§
impl Freeze for RemoteServerStarted
impl RefUnwindSafe for RemoteServerStarted
impl Send for RemoteServerStarted
impl Sync for RemoteServerStarted
impl Unpin for RemoteServerStarted
impl UnsafeUnpin for RemoteServerStarted
impl UnwindSafe for RemoteServerStarted
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