pub struct ParkingMenuEntry {
pub slot: u32,
pub caller_name: String,
pub caller_number: String,
pub connected_name: String,
pub connected_number: String,
}Expand description
One selectable parked call rendered by the station parking application.
slot is the stable parking-space identifier returned by a subsequent
DeviceEventKind::ParkingMenuSelection. The caller and connected-party
fields are presentation text and do not participate in selection identity.
Fields§
§slot: u32§caller_name: String§caller_number: String§connected_name: String§connected_number: StringTrait Implementations§
Source§impl Clone for ParkingMenuEntry
impl Clone for ParkingMenuEntry
Source§fn clone(&self) -> ParkingMenuEntry
fn clone(&self) -> ParkingMenuEntry
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 ParkingMenuEntry
impl Debug for ParkingMenuEntry
impl Eq for ParkingMenuEntry
Source§impl PartialEq for ParkingMenuEntry
impl PartialEq for ParkingMenuEntry
impl StructuralPartialEq for ParkingMenuEntry
Auto Trait Implementations§
impl Freeze for ParkingMenuEntry
impl RefUnwindSafe for ParkingMenuEntry
impl Send for ParkingMenuEntry
impl Sync for ParkingMenuEntry
impl Unpin for ParkingMenuEntry
impl UnsafeUnpin for ParkingMenuEntry
impl UnwindSafe for ParkingMenuEntry
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