pub struct WebConfigInfo {
pub host: String,
pub port: u16,
pub frontend_origin: String,
}Expand description
Web-share listener configuration reported by the daemon.
Fields§
§host: StringListener host.
port: u16Listener port.
frontend_origin: StringOrigin used by the web-share frontend.
Trait Implementations§
Source§impl Clone for WebConfigInfo
impl Clone for WebConfigInfo
Source§fn clone(&self) -> WebConfigInfo
fn clone(&self) -> WebConfigInfo
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 WebConfigInfo
impl Debug for WebConfigInfo
impl Eq for WebConfigInfo
Source§fn from(value: WebShareListener) -> Self
fn from(value: WebShareListener) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WebConfigInfo
impl PartialEq for WebConfigInfo
Source§fn eq(&self, other: &WebConfigInfo) -> bool
fn eq(&self, other: &WebConfigInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WebConfigInfo
Auto Trait Implementations§
impl Freeze for WebConfigInfo
impl RefUnwindSafe for WebConfigInfo
impl Send for WebConfigInfo
impl Sync for WebConfigInfo
impl Unpin for WebConfigInfo
impl UnsafeUnpin for WebConfigInfo
impl UnwindSafe for WebConfigInfo
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