Enum probe_rs_cli_util::rtt::ChannelMode
source · pub enum ChannelMode {
NoBlockSkip,
NoBlockTrim,
BlockIfFull,
}Expand description
Specifies what to do when a channel doesn’t have enough buffer space for a complete write on the target side.
Variants§
NoBlockSkip
Skip writing the data completely if it doesn’t fit in its entirety.
NoBlockTrim
Write as much as possible of the data and ignore the rest.
BlockIfFull
Block (spin) if the buffer is full. Note that if the application writes within a critical section, using this mode can cause the application to freeze if the buffer becomes full and is not read by the host.
Trait Implementations§
source§impl Clone for ChannelMode
impl Clone for ChannelMode
source§fn clone(&self) -> ChannelMode
fn clone(&self) -> ChannelMode
Returns a copy 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 ChannelMode
impl Debug for ChannelMode
source§impl<'de> Deserialize<'de> for ChannelMode
impl<'de> Deserialize<'de> for ChannelMode
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<ChannelMode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<ChannelMode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ChannelMode> for ChannelMode
impl PartialEq<ChannelMode> for ChannelMode
source§fn eq(&self, other: &ChannelMode) -> bool
fn eq(&self, other: &ChannelMode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ChannelMode
impl Serialize for ChannelMode
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for ChannelMode
impl Eq for ChannelMode
impl StructuralEq for ChannelMode
impl StructuralPartialEq for ChannelMode
Auto Trait Implementations§
impl RefUnwindSafe for ChannelMode
impl Send for ChannelMode
impl Sync for ChannelMode
impl Unpin for ChannelMode
impl UnwindSafe for ChannelMode
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.