pub struct LeaseRange {
    pub end_ip: Option<String>,
    pub start_ip: Option<String>,
}Available on crate feature 
v5 only.Expand description
LeaseRange contains the range where IP are leased.
Fields§
§end_ip: Option<String>EndIP last IP in the subnet which should be used to assign ips.
start_ip: Option<String>StartIP first IP in the subnet which should be used to assign ips.
Trait Implementations§
Source§impl Debug for LeaseRange
 
impl Debug for LeaseRange
Source§impl Default for LeaseRange
 
impl Default for LeaseRange
Source§fn default() -> LeaseRange
 
fn default() -> LeaseRange
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LeaseRange
 
impl<'de> Deserialize<'de> for LeaseRange
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 LeaseRange
impl RefUnwindSafe for LeaseRange
impl Send for LeaseRange
impl Sync for LeaseRange
impl Unpin for LeaseRange
impl UnwindSafe for LeaseRange
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