Struct rlink::api::properties::Properties[][src]

pub struct Properties { /* fields omitted */ }

Implementations

impl Properties[src]

pub fn new() -> Self[src]

pub fn as_map(&self) -> &HashMap<String, String>[src]

pub fn set_str(&mut self, key: &str, value: &str)[src]

pub fn set_string(&mut self, key: String, value: String)[src]

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

pub fn set_i32(&mut self, key: &str, value: i32)[src]

pub fn get_i32(&self, key: &str) -> Result<i32>[src]

pub fn set_u32(&mut self, key: &str, value: u32)[src]

pub fn get_u32(&self, key: &str) -> Result<u32>[src]

pub fn set_i64(&mut self, key: &str, value: i64)[src]

pub fn get_i64(&self, key: &str) -> Result<i64>[src]

pub fn set_u64(&mut self, key: &str, value: u64)[src]

pub fn get_u64(&self, key: &str) -> Result<u64>[src]

Trait Implementations

impl Clone for Properties[src]

impl Debug for Properties[src]

impl<'de> Deserialize<'de> for Properties[src]

impl Serialize for Properties[src]

impl SystemProperties for Properties[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> CloneAny for T where
    T: Any + Clone

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<T> UnsafeAny for T where
    T: Any

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