pub struct GetVPRIsResponseVPRI {
pub vpri: Option<u64>,
pub name: Option<String>,
pub note: Option<String>,
pub channels: Option<u64>,
pub monthly_fee: Option<Decimal>,
pub next_billing: Option<NaiveDate>,
pub burst_enabled: Option<u64>,
pub burst_max_channels: Option<u64>,
pub burst_percentage_charge: Option<u64>,
}Expand description
Response body for Client::get_vpris (wire method getVPRIs).
Fields§
§vpri: Option<u64>§name: Option<String>§note: Option<String>§channels: Option<u64>§monthly_fee: Option<Decimal>§next_billing: Option<NaiveDate>§burst_enabled: Option<u64>§burst_max_channels: Option<u64>§burst_percentage_charge: Option<u64>Trait Implementations§
Source§impl Clone for GetVPRIsResponseVPRI
impl Clone for GetVPRIsResponseVPRI
Source§fn clone(&self) -> GetVPRIsResponseVPRI
fn clone(&self) -> GetVPRIsResponseVPRI
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetVPRIsResponseVPRI
impl Debug for GetVPRIsResponseVPRI
Source§impl Default for GetVPRIsResponseVPRI
impl Default for GetVPRIsResponseVPRI
Source§fn default() -> GetVPRIsResponseVPRI
fn default() -> GetVPRIsResponseVPRI
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetVPRIsResponseVPRI
impl<'de> Deserialize<'de> for GetVPRIsResponseVPRI
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 GetVPRIsResponseVPRI
impl RefUnwindSafe for GetVPRIsResponseVPRI
impl Send for GetVPRIsResponseVPRI
impl Sync for GetVPRIsResponseVPRI
impl Unpin for GetVPRIsResponseVPRI
impl UnsafeUnpin for GetVPRIsResponseVPRI
impl UnwindSafe for GetVPRIsResponseVPRI
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