pub struct ListingSla {
pub max_latency_ms: u64,
pub availability_bps: u32,
pub throughput_rps: u64,
}Expand description
Service-level advertisement paired with a pricing hint.
Fields§
§max_latency_ms: u64§availability_bps: u32Availability SLA expressed in basis points. 10_000 means 100.00%.
throughput_rps: u64Implementations§
Trait Implementations§
Source§impl Clone for ListingSla
impl Clone for ListingSla
Source§fn clone(&self) -> ListingSla
fn clone(&self) -> ListingSla
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 Debug for ListingSla
impl Debug for ListingSla
Source§impl<'de> Deserialize<'de> for ListingSla
impl<'de> Deserialize<'de> for ListingSla
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
Source§impl PartialEq for ListingSla
impl PartialEq for ListingSla
Source§impl Serialize for ListingSla
impl Serialize for ListingSla
impl Eq for ListingSla
impl StructuralPartialEq for ListingSla
Auto Trait Implementations§
impl Freeze for ListingSla
impl RefUnwindSafe for ListingSla
impl Send for ListingSla
impl Sync for ListingSla
impl Unpin for ListingSla
impl UnsafeUnpin for ListingSla
impl UnwindSafe for ListingSla
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