pub struct Text {
pub reader: u8,
pub command: TextCommand,
pub temp_time_s: u8,
pub row: u8,
pub column: u8,
pub text: Vec<u8>,
}Expand description
osdp_TEXT body.
Fields§
§reader: u8Reader number.
command: TextCommandText command code.
temp_time_s: u8Temporary on-time in seconds (1..=255). Set 0 for permanent commands.
row: u8Display row (1..).
column: u8Display column (1..).
text: Vec<u8>Printable ASCII text (0x20..=0x7E).
Implementations§
Trait Implementations§
impl Eq for Text
impl StructuralPartialEq for Text
Auto Trait Implementations§
impl Freeze for Text
impl RefUnwindSafe for Text
impl Send for Text
impl Sync for Text
impl Unpin for Text
impl UnsafeUnpin for Text
impl UnwindSafe for Text
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