pub struct SlmpConnectionOptions {
pub host: String,
pub port: u16,
pub timeout: Duration,
pub frame_type: SlmpFrameType,
pub compatibility_mode: SlmpCompatibilityMode,
pub target: SlmpTargetAddress,
pub transport_mode: SlmpTransportMode,
pub monitoring_timer: u16,
}Fields§
§host: String§port: u16§timeout: Duration§frame_type: SlmpFrameType§compatibility_mode: SlmpCompatibilityMode§target: SlmpTargetAddress§transport_mode: SlmpTransportMode§monitoring_timer: u16Implementations§
Trait Implementations§
Source§impl Clone for SlmpConnectionOptions
impl Clone for SlmpConnectionOptions
Source§fn clone(&self) -> SlmpConnectionOptions
fn clone(&self) -> SlmpConnectionOptions
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 moreAuto Trait Implementations§
impl Freeze for SlmpConnectionOptions
impl RefUnwindSafe for SlmpConnectionOptions
impl Send for SlmpConnectionOptions
impl Sync for SlmpConnectionOptions
impl Unpin for SlmpConnectionOptions
impl UnsafeUnpin for SlmpConnectionOptions
impl UnwindSafe for SlmpConnectionOptions
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