pub struct ProcessOutboundConnectionBuilder { /* private fields */ }
Expand description
Builder for ProcessOutboundConnection
.
Implementations§
Source§impl ProcessOutboundConnectionBuilder
impl ProcessOutboundConnectionBuilder
pub fn node_key<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn asset_id<VALUE: Into<Option<String>>>( &mut self, value: VALUE, ) -> &mut Self
pub fn hostname<VALUE: Into<Option<String>>>( &mut self, value: VALUE, ) -> &mut Self
Sourcepub fn state<VALUE: Into<u32>>(&mut self, value: VALUE) -> &mut Self
pub fn state<VALUE: Into<u32>>(&mut self, value: VALUE) -> &mut Self
1 = Created, 2 = Terminated, 3 = Existing
pub fn created_timestamp<VALUE: Into<u64>>(&mut self, value: VALUE) -> &mut Self
pub fn terminated_timestamp<VALUE: Into<u64>>( &mut self, value: VALUE, ) -> &mut Self
pub fn last_seen_timestamp<VALUE: Into<u64>>( &mut self, value: VALUE, ) -> &mut Self
pub fn port<VALUE: Into<u32>>(&mut self, value: VALUE) -> &mut Self
pub fn ip_address<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn protocol<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Trait Implementations§
Source§impl Clone for ProcessOutboundConnectionBuilder
impl Clone for ProcessOutboundConnectionBuilder
Source§fn clone(&self) -> ProcessOutboundConnectionBuilder
fn clone(&self) -> ProcessOutboundConnectionBuilder
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 moreSource§impl Default for ProcessOutboundConnectionBuilder
impl Default for ProcessOutboundConnectionBuilder
Source§fn default() -> ProcessOutboundConnectionBuilder
fn default() -> ProcessOutboundConnectionBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProcessOutboundConnectionBuilder
impl RefUnwindSafe for ProcessOutboundConnectionBuilder
impl Send for ProcessOutboundConnectionBuilder
impl Sync for ProcessOutboundConnectionBuilder
impl Unpin for ProcessOutboundConnectionBuilder
impl UnwindSafe for ProcessOutboundConnectionBuilder
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