pub struct CallCountResponse {
pub total_configured_lines: u32,
pub starting_line_instance: u32,
pub line_data: Vec<CallCountLineData>,
}Expand description
Fixed-array response describing the configured capacity of station lines.
Fields§
§total_configured_lines: u32§starting_line_instance: u32§line_data: Vec<CallCountLineData>Active records; the wire body reserves 42 entries and zero-fills the rest.
Trait Implementations§
Source§impl Clone for CallCountResponse
impl Clone for CallCountResponse
Source§fn clone(&self) -> CallCountResponse
fn clone(&self) -> CallCountResponse
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 CallCountResponse
impl Debug for CallCountResponse
impl Eq for CallCountResponse
Source§impl PartialEq for CallCountResponse
impl PartialEq for CallCountResponse
impl StructuralPartialEq for CallCountResponse
Auto Trait Implementations§
impl Freeze for CallCountResponse
impl RefUnwindSafe for CallCountResponse
impl Send for CallCountResponse
impl Sync for CallCountResponse
impl Unpin for CallCountResponse
impl UnsafeUnpin for CallCountResponse
impl UnwindSafe for CallCountResponse
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