pub struct RttOptions {
pub channel: u32,
pub search_addr: Option<u64>,
pub search_size: Option<u64>,
pub chunk_size: Option<u64>,
}Expand description
Options for DebugNet::rtt / RTT streaming (one-way and interactive).
Fields§
§channel: u32RTT channel (0 or 1).
search_addr: Option<u64>RAM start address for the RTT control-block search (advanced).
search_size: Option<u64>Size of the RAM region to search, in bytes (advanced).
chunk_size: Option<u64>Read chunk size on the box side (J-Link only, advanced). Only used by interactive RTT; the one-way HTTP stream ignores it.
Trait Implementations§
Source§impl Clone for RttOptions
impl Clone for RttOptions
Source§fn clone(&self) -> RttOptions
fn clone(&self) -> RttOptions
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 moreimpl Copy for RttOptions
Source§impl Debug for RttOptions
impl Debug for RttOptions
Source§impl Default for RttOptions
impl Default for RttOptions
Source§fn default() -> RttOptions
fn default() -> RttOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RttOptions
impl RefUnwindSafe for RttOptions
impl Send for RttOptions
impl Sync for RttOptions
impl Unpin for RttOptions
impl UnsafeUnpin for RttOptions
impl UnwindSafe for RttOptions
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