Struct client::SystemConfig
source · pub struct SystemConfig {
pub socket: AuraeSocket,
}
Expand description
The system configuration for AuraeScript.
Used to define settings for AuraeScript at runtime.
Fields§
§socket: AuraeSocket
Socket to connect the client to. Can be a path (unix socket) or a network socket address.
When deserializing from a string, the deserializer will try to parse a valid value in the following order:
- IpV6 with scope id (e.g., “[fe80::2%4]:8080”)
- IpV6 without scope id (e.g., “[fe80::2]:8080”)
- IpV4 (e.g., “127.0.0.1:8080”)
- Otherwise a path
scope id must be a valid u32, otherwise it will be assumed a path
Trait Implementations§
source§impl Clone for SystemConfig
impl Clone for SystemConfig
source§fn clone(&self) -> SystemConfig
fn clone(&self) -> SystemConfig
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 SystemConfig
impl Debug for SystemConfig
source§impl<'de> Deserialize<'de> for SystemConfig
impl<'de> Deserialize<'de> for SystemConfig
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 SystemConfig
impl RefUnwindSafe for SystemConfig
impl Send for SystemConfig
impl Sync for SystemConfig
impl Unpin for SystemConfig
impl UnwindSafe for SystemConfig
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request