[][src]Struct dprint_core::PrintItems

pub struct PrintItems { /* fields omitted */ }

Print Items

Methods

impl PrintItems[src]

pub fn new() -> PrintItems[src]

pub fn into_rc_path(self) -> Option<PrintItemPath>[src]

pub fn push_item(&mut self, item: PrintItem)[src]

impl PrintItems[src]

pub fn extend(&mut self, items: PrintItems)[src]

pub fn push_str(&mut self, item: &str)[src]

pub fn push_condition(&mut self, condition: Condition)[src]

pub fn push_info(&mut self, info: Info)[src]

pub fn push_signal(&mut self, signal: Signal)[src]

pub fn push_path(&mut self, path: PrintItemPath)[src]

pub fn push_optional_path(&mut self, path: Option<PrintItemPath>)[src]

pub fn is_empty(&self) -> bool[src]

pub fn get_as_text(&self) -> String[src]

pub fn iter(&self) -> PrintItemsIterator[src]

Trait Implementations

impl<'_> Into<PrintItems> for &'_ str[src]

impl Into<PrintItems> for String[src]

impl<'_> Into<PrintItems> for &'_ String[src]

impl Into<PrintItems> for Condition[src]

impl Into<PrintItems> for Signal[src]

impl Into<PrintItems> for Option<PrintItemPath>[src]

Auto Trait Implementations

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.