[][src]Struct netrc_rs::Netrc

pub struct Netrc {
    pub machines: Vec<Machine>,
    pub macdefs: Vec<(String, Vec<String>)>,
    pub unknown_entries: Vec<String>,
}

Netrc represents a .netrc file struct

Fields

machines: Vec<Machine>

machine name and one machine info are paired

macdefs: Vec<(String, Vec<String>)>

macro name and a list cmd are paired

unknown_entries: Vec<String>

support collecting unknown entry when parsing for extended using

Methods

impl Netrc[src]

pub fn parse<T: AsRef<str>>(buf: T, unknown_entries: bool) -> Result<Netrc>[src]

Parse a Netrc format str. If pass true to unknown_entries, it will collect unknown entries.

Examples

use netrc_rs::{Netrc, Machine};

let input = String::from("machine example.com login foo password bar");
let netrc = Netrc::parse(input, false).unwrap();
assert_eq!(netrc.machines, vec![ Machine {
name: Some("example.com".to_string()),
account: None,
login: Some("foo".to_string()),
password: Some("bar".to_string()),
}]);
assert_eq!(netrc.machines[0].to_string(), "machine example.com login foo password bar".to_string());

pub fn parse_borrow<T: AsRef<str>>(
    buf: &T,
    unknown_entries: bool
) -> Result<Netrc>
[src]

Parse a Netrc format str with borrowing.

If pass true to unknown_entries, it will collect unknown entries.

Examples

use netrc_rs::{Netrc, Machine};

let input = String::from("machine 例子.com login foo password bar");
let netrc = Netrc::parse_borrow(&input, false).unwrap();
assert_eq!(netrc.machines, vec![Machine {
name: Some("例子.com".to_string()),
account: None,
login: Some("foo".to_string()),
password: Some("bar".to_string()),
}]);
assert_eq!(netrc.machines[0].to_string(), "machine 例子.com login foo password bar".to_string());

Trait Implementations

impl Debug for Netrc[src]

impl Default for Netrc[src]

Auto Trait Implementations

impl RefUnwindSafe for Netrc

impl Send for Netrc

impl Sync for Netrc

impl Unpin for Netrc

impl UnwindSafe for Netrc

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.