Skip to main content

Frame

Enum Frame 

Source
pub enum Frame {
    Success(String),
    Error(String),
    Notification {
        kind: String,
        payload: String,
    },
    ClientEnv {
        event: String,
        args: String,
        env: BTreeMap<String, String>,
    },
    PasswordPrompt,
    End,
    Info(String),
    Line(String),
}
Expand description

A classified line (or accumulated block) from the OpenVPN management interface.

The frame decoder emits one Frame per logical unit. Most variants map 1:1 to a wire line; ClientEnv is the exception — it accumulates the full >CLIENT: header + ENV block before being emitted.

use bytes::BytesMut;
use tokio_util::codec::Decoder;
use openvpn_mgmt_frame::{Frame, FrameDecoder};

let mut decoder = FrameDecoder::new();
let mut buf = BytesMut::from(
    "SUCCESS: pid=42\nERROR: unknown command\nEND\n"
);

assert!(matches!(decoder.decode(&mut buf).unwrap(), Some(Frame::Success(_))));
assert!(matches!(decoder.decode(&mut buf).unwrap(), Some(Frame::Error(_))));
assert!(matches!(decoder.decode(&mut buf).unwrap(), Some(Frame::End)));

Variants§

§

Success(String)

SUCCESS: [text] — a command completed successfully.

§

Error(String)

ERROR: [text] — a command failed.

§

Notification

A > notification line (single-line).

kind is the tag before the first : (e.g. "STATE", "LOG"). payload is everything after the :.

>CLIENT: lines with ENV blocks are not emitted as Notification — they become ClientEnv instead.

Fields

§kind: String

Notification type tag (e.g. "STATE", "LOG", "BYTECOUNT").

§payload: String

Everything after >KIND:.

§

ClientEnv

A fully accumulated >CLIENT: notification with its ENV block.

All >CLIENT:ENV,key=value lines have been collected; the terminating >CLIENT:ENV,END has been consumed.

Fields

§event: String

Raw event string (e.g. "CONNECT", "REAUTH", "ADDRESS").

§args: String

Everything after the event on the header line (CID, KID, etc.), as a raw comma-separated string.

§env: BTreeMap<String, String>

Accumulated ENV key-value pairs.

§

PasswordPrompt

ENTER PASSWORD: prompt.

§

End

A bare END line — terminates a multi-line response block.

§

Info(String)

The first >INFO: line (the connection banner).

Subsequent >INFO: lines are emitted as Notification with kind = "INFO".

§

Line(String)

Any line that is not self-describing (no SUCCESS:/ERROR:/> prefix, not END, not ENTER PASSWORD:).

Higher layers use command-tracking state to decide whether this belongs to a multi-line response or is an unrecognized line.

Trait Implementations§

Source§

impl Clone for Frame

Source§

fn clone(&self) -> Frame

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Frame

Source§

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

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Frame

Source§

fn eq(&self, other: &Frame) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for Frame

Source§

impl StructuralPartialEq for Frame

Auto Trait Implementations§

§

impl Freeze for Frame

§

impl RefUnwindSafe for Frame

§

impl Send for Frame

§

impl Sync for Frame

§

impl Unpin for Frame

§

impl UnsafeUnpin for Frame

§

impl UnwindSafe for Frame

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

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

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

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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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