pub struct ProcessInboundConnectionBuilder { /* private fields */ }
Expand description
Builder for ProcessInboundConnection
.
Implementations§
Source§impl ProcessInboundConnectionBuilder
impl ProcessInboundConnectionBuilder
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 ProcessInboundConnectionBuilder
impl Clone for ProcessInboundConnectionBuilder
Source§fn clone(&self) -> ProcessInboundConnectionBuilder
fn clone(&self) -> ProcessInboundConnectionBuilder
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 ProcessInboundConnectionBuilder
impl Default for ProcessInboundConnectionBuilder
Source§fn default() -> ProcessInboundConnectionBuilder
fn default() -> ProcessInboundConnectionBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProcessInboundConnectionBuilder
impl RefUnwindSafe for ProcessInboundConnectionBuilder
impl Send for ProcessInboundConnectionBuilder
impl Sync for ProcessInboundConnectionBuilder
impl Unpin for ProcessInboundConnectionBuilder
impl UnwindSafe for ProcessInboundConnectionBuilder
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