Struct purr::write::Writer[][src]

pub struct Writer { /* fields omitted */ }

A Follower that builds a string SMILEs representation.

use purr::walk::Follower;
use purr::write::Writer;
use purr::feature::{ AtomKind, BondKind };
 
fn main() {
    let mut writer = Writer::new();
 
    writer.root(AtomKind::Star);
    writer.extend(BondKind::Double, AtomKind::Star);
 
    assert_eq!(writer.write(), "*=*")
}

Implementations

impl Writer[src]

pub fn new() -> Self[src]

pub fn write(self) -> String[src]

Trait Implementations

impl Debug for Writer[src]

impl Follower for Writer[src]

impl PartialEq<Writer> for Writer[src]

impl StructuralPartialEq for Writer[src]

Auto Trait Implementations

impl RefUnwindSafe for Writer

impl Send for Writer

impl Sync for Writer

impl Unpin for Writer

impl UnwindSafe for Writer

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.