MmdvmSession

Struct MmdvmSession 

Source
pub struct MmdvmSession<T: Transport + Unpin + 'static> { /* private fields */ }
Expand description

An MMDVM session that owns the radio transport via an mmdvm::AsyncModem.

While this session is active, the transport speaks the MMDVM binary framing protocol and all I/O is funneled through the spawned modem-loop task. CAT commands are unavailable until MmdvmSession::exit is called.

The session is consumed on entry (via Radio::enter_mmdvm) and returned on exit.

Implementations§

Source§

impl<T: Transport + Unpin + 'static> MmdvmSession<T>

Source

pub const fn modem_mut(&mut self) -> &mut AsyncModem<MmdvmTransportAdapter<T>>

Mutable access to the underlying mmdvm::AsyncModem.

Consumers that need low-level MMDVM control (custom status polls, mode changes, raw frame send) work with the handle directly. Higher-level D-STAR orchestration (headers, voice frames, EOT) is wrapped by crate::mmdvm::DStarGateway.

Source

pub async fn exit(self) -> Result<Radio<T>, Error>

Exit MMDVM mode and return the Radio.

Shuts down the mmdvm::AsyncModem, recovering the transport, sends TN 0,0 on the raw transport to return the radio’s TNC to normal APRS mode, then rebuilds the Radio from saved state.

§Errors

Returns Error::Transport if the TN 0,0 write fails, or translates mmdvm::ShellError into Error::Transport / Error::Protocol as appropriate.

Trait Implementations§

Source§

impl<T: Transport + Unpin + 'static> Debug for MmdvmSession<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T> Freeze for MmdvmSession<T>

§

impl<T> !RefUnwindSafe for MmdvmSession<T>

§

impl<T> Send for MmdvmSession<T>

§

impl<T> Sync for MmdvmSession<T>

§

impl<T> Unpin for MmdvmSession<T>

§

impl<T> !UnwindSafe for MmdvmSession<T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more