pub struct SerialPacket {
pub channel_name: ChannelName,
pub row_type: RowType,
pub start_time: StartTime,
pub duration: Duration,
pub data: u8,
}Expand description
Serial packet
Fields§
§channel_name: ChannelNameSaleae Logic 2 channel name
row_type: RowTypeRow type
start_time: StartTimeTime since capture start
duration: DurationTransaction duration
data: u8Data sent/received
Trait Implementations§
Source§impl Debug for SerialPacket
impl Debug for SerialPacket
Auto Trait Implementations§
impl Freeze for SerialPacket
impl RefUnwindSafe for SerialPacket
impl Send for SerialPacket
impl Sync for SerialPacket
impl Unpin for SerialPacket
impl UnwindSafe for SerialPacket
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