Enum Bencode

Source
pub enum Bencode {
    Int(i64),
    Str(Vec<u8>),
    List(Vec<Bencode>),
    Dict(HashMap<String, Bencode>),
}
Expand description

Represents a bencode value.

Variants§

§

Int(i64)

Represents an integer value.

§

Str(Vec<u8>)

Represents a string value.

§

List(Vec<Bencode>)

Represents a list of bencode values.

§

Dict(HashMap<String, Bencode>)

Represents a dictionary of bencode values.

Implementations§

Source§

impl Bencode

Source

pub fn as_int(&self) -> Option<i64>

Returns the integer value if this is a Bencode::Int.

§Returns

An Option containing the integer value or None if this is not a Bencode::Int.

Source

pub fn as_bytes(&self) -> Option<&Vec<u8>>

Returns the string value if this is a Bencode::Str.

§Returns

An Option containing the string value or None if this is not a Bencode::Str.

Source

pub fn as_list(&self) -> Option<&Vec<Bencode>>

Returns the list value if this is a Bencode::List.

§Returns

An Option containing the list value or None if this is not a Bencode::List.

Source

pub fn as_dict(&self) -> Option<&HashMap<String, Bencode>>

Returns the dictionary value if this is a Bencode::Dict.

§Returns

An Option containing the dictionary value or None if this is not a Bencode::Dict.

Trait Implementations§

Source§

impl Debug for Bencode

Source§

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

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

impl PartialEq for Bencode

Source§

fn eq(&self, other: &Bencode) -> 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 Bencode

Source§

impl StructuralPartialEq for Bencode

Auto Trait Implementations§

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.

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.