[][src]Struct tomboy_toml_dom::model::layer310::Document

pub struct Document {
    pub elements: Vec<DocumentElement>,
}

It has multiple document_element.
複数の 縦幅を持つ行 を持ちます。

Fields

elements: Vec<DocumentElement>

Line with height. 縦幅を持つ行。

Implementations

impl Document[src]

pub fn get_right_value_by_key(&self, key: &str) -> Option<&DocumentElement>[src]

Right of left = right.
キー・バリューの右値。

pub fn get_literal_string_by_key(&self, key: &str) -> Option<&LiteralValue>[src]

Right of left = right.
キー・バリューの右値。

pub fn get_i128_by_key(&self, key: &str) -> Option<i128>[src]

Right integer of left = 123.
キー・バリューの右の整数値。

pub fn get_f64_by_key(&self, key: &str) -> Option<f64>[src]

WIP. まだ . をパースできていません。

Right integer of left = 1.2.
キー・バリューの右の整数値。

pub fn get_str_by_key(&self, _key: &str) -> Option<&str>[src]

👎 Deprecated since 0.1.10:

Please use the tomboy_toml_dom::model::layer310::document::get_string_by_key() method instead

pub fn get_string_by_key(&self, key: &str) -> Option<String>[src]

Right string of left = "abc".
キー・バリューの右の文字列。

pub fn get_debug_string_by_key(&self, key: &str) -> String[src]

For this library developer.

pub fn get_bool_by_key(&self, key: &str) -> Option<bool>[src]

Right boolean of left = true.
キー・バリューの右の論理値。

pub fn get_datetime_utc_by_key(&self, key: &str) -> Option<DateTime<Utc>>[src]

DateTime. UTC.
日付と時刻。協定世界時。

pub fn push_element(&mut self, m: &DocumentElement)[src]

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

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

Trait Implementations

impl Clone for Document[src]

impl Debug for Document[src]

impl Default for Document[src]

impl Display for Document[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,