[][src]Struct binjs_shared::PropertyKey

pub struct PropertyKey(pub SharedString);

A property, inside the grammar.

Methods

impl PropertyKey[src]

pub const fn from_str(value: &'static str) -> Self[src]

pub fn from_string(value: String) -> Self[src]

pub fn from_rc_string(value: Rc<String>) -> Self[src]

pub fn as_str(&self) -> &str[src]

pub fn as_shared_string(&self) -> &SharedString[src]

Trait Implementations

impl Clone for PropertyKey[src]

impl Debug for PropertyKey[src]

impl Default for PropertyKey[src]

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

impl Display for PropertyKey[src]

impl Eq for PropertyKey[src]

impl Hash for PropertyKey[src]

impl<'a> Into<&'a [u8]> for &'a PropertyKey[src]

impl Ord for PropertyKey[src]

impl<'a> PartialEq<&'a str> for PropertyKey[src]

impl PartialEq<PropertyKey> for PropertyKey[src]

impl PartialOrd<PropertyKey> for PropertyKey[src]

impl Serialize for PropertyKey[src]

impl StructuralEq for PropertyKey[src]

Auto Trait Implementations

impl !RefUnwindSafe for PropertyKey

impl !Send for PropertyKey

impl !Sync for PropertyKey

impl Unpin for PropertyKey

impl UnwindSafe for PropertyKey

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[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.