pub struct IpAddressBuilder { /* private fields */ }
Expand description
Builder for IpAddress
.
Implementations§
Source§impl IpAddressBuilder
impl IpAddressBuilder
pub fn node_key<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn ip_address<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn first_seen_timestamp<VALUE: Into<u64>>( &mut self, value: VALUE, ) -> &mut Self
pub fn last_seen_timestamp<VALUE: Into<u64>>( &mut self, value: VALUE, ) -> &mut Self
Trait Implementations§
Source§impl Clone for IpAddressBuilder
impl Clone for IpAddressBuilder
Source§fn clone(&self) -> IpAddressBuilder
fn clone(&self) -> IpAddressBuilder
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 IpAddressBuilder
impl Default for IpAddressBuilder
Source§fn default() -> IpAddressBuilder
fn default() -> IpAddressBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IpAddressBuilder
impl RefUnwindSafe for IpAddressBuilder
impl Send for IpAddressBuilder
impl Sync for IpAddressBuilder
impl Unpin for IpAddressBuilder
impl UnwindSafe for IpAddressBuilder
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