Struct rpsl::ObjectView

source ·
pub struct ObjectView<'a> { /* private fields */ }
Expand description

A view into an RPSL object in textual representation somewhere in memory.

This is the borrowed equivalent of an Object, only containing references to the original data in the form of AttributeViews. It presents largely the same interface as its owned equivalent, although it will always return references.

role:           ACME Company ◀─────────────── &"role"    ───  &"ACME Company"
address:        Packet Street 6 ◀──────────── &"address" ─┬─  &"Packet Street 6"
                128 Series of Tubes ◀────────             ├─  &"128 Series of Tubes"
                Internet ◀───────────────────             └─  &"Internet"
email:          rpsl-rs@github.com ◀───────── &"email"   ───  &"rpsl-rs@github.com"
nic-hdl:        RPSL1-RIPE ◀───────────────── &"nic-hdl" ───  &"RPSL1-RIPE"
source:         RIPE ◀─────────────────────── &"source"  ───  &"RIPE"

Since an ObjectView is purely used to provide a view into referenced RPSL data, it can only be created from RPSL text using the parse_object and parse_whois_response functions.

Examples

Like an owned Object, its attributes can be accessed by index.

assert_eq!(role_acme[0], Attribute::new("role".parse()?, "ACME Company".parse()?));
assert_eq!(role_acme[3], Attribute::new("nic-hdl".parse()?, "RPSL1-RIPE".parse()?));

While specific attribute values can be accessed by name.

assert_eq!(role_acme.get("role"), vec!["ACME Company"]);
assert_eq!(role_acme.get("address"), vec!["Packet Street 6", "128 Series of Tubes", "Internet"]);
assert_eq!(role_acme.get("email"), vec!["rpsl-rs@github.com"]);
assert_eq!(role_acme.get("nic-hdl"), vec!["RPSL1-RIPE"]);
assert_eq!(role_acme.get("source"), vec!["RIPE"]);

Views can be compared to their owned equivalents.

assert_eq!(
    role_acme,
    object! {
        "role": "ACME Company";
        "address": "Packet Street 6", "128 Series of Tubes", "Internet";
        "email": "rpsl-rs@github.com";
        "nic-hdl": "RPSL1-RIPE";
        "source": "RIPE";
     },
);

As well as converted to them if required.

role_acme.to_owned();

Implementations§

source§

impl<'a> ObjectView<'a>

source

pub fn to_owned(&self) -> Object

Turn the view into an owned Object.

source

pub fn len(&self) -> usize

The number of attributes referenced within the view.

source

pub fn get(&self, name: &str) -> Vec<&str>

Get the value(s) of specific attribute(s).

Trait Implementations§

source§

impl<'a> Clone for ObjectView<'a>

source§

fn clone(&self) -> ObjectView<'a>

Returns a copy 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 ObjectView<'_>

source§

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

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

impl Display for ObjectView<'_>

source§

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

Display the view as RPSL.

source§

impl<'a> Index<usize> for ObjectView<'a>

§

type Output = AttributeView<'a>

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<'a> IntoIterator for ObjectView<'a>

§

type Item = AttributeView<'a>

The type of the elements being iterated over.
§

type IntoIter = IntoIter<<ObjectView<'a> as IntoIterator>::Item>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<Object> for ObjectView<'_>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq for ObjectView<'a>

source§

fn eq(&self, other: &ObjectView<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Eq for ObjectView<'a>

source§

impl<'a> StructuralEq for ObjectView<'a>

source§

impl<'a> StructuralPartialEq for ObjectView<'a>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for ObjectView<'a>

§

impl<'a> Send for ObjectView<'a>

§

impl<'a> Sync for ObjectView<'a>

§

impl<'a> Unpin for ObjectView<'a>

§

impl<'a> UnwindSafe for ObjectView<'a>

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

§

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> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

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>,

§

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.