pub struct DashSelectPayload {
pub screen: DashScreen,
pub port: u8,
}
Fields§
§screen: DashScreen
§port: u8
This serves as a generic argument to the dash screen to select its “variant”. It’s named this because it’s used to select a specific port number on a device screen.
Trait Implementations§
Source§impl Clone for DashSelectPayload
impl Clone for DashSelectPayload
Source§fn clone(&self) -> DashSelectPayload
fn clone(&self) -> DashSelectPayload
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 DashSelectPayload
impl Debug for DashSelectPayload
Source§impl Encode for DashSelectPayload
impl Encode for DashSelectPayload
Source§impl PartialEq for DashSelectPayload
impl PartialEq for DashSelectPayload
impl Copy for DashSelectPayload
impl Eq for DashSelectPayload
impl StructuralPartialEq for DashSelectPayload
Auto Trait Implementations§
impl Freeze for DashSelectPayload
impl RefUnwindSafe for DashSelectPayload
impl Send for DashSelectPayload
impl Sync for DashSelectPayload
impl Unpin for DashSelectPayload
impl UnwindSafe for DashSelectPayload
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