Struct selene_lib::standard_library::StandardLibrary [−][src]
pub struct StandardLibrary { pub meta: Option<StandardLibraryMeta>, pub globals: BTreeMap<String, Field>, pub structs: BTreeMap<String, Field>, }
Fields
meta: Option<StandardLibraryMeta>
globals: BTreeMap<String, Field>
structs: BTreeMap<String, Field>
Implementations
impl StandardLibrary
[src]
impl StandardLibrary
[src]pub fn from_name(name: &str) -> Option<StandardLibrary>
[src]
pub fn from_config_name(
name: &str,
directory: Option<&Path>
) -> Result<Option<StandardLibrary>, StandardLibraryError>
[src]
name: &str,
directory: Option<&Path>
) -> Result<Option<StandardLibrary>, StandardLibraryError>
pub fn from_file(
filename: &Path
) -> Result<Option<StandardLibrary>, StandardLibraryError>
[src]
filename: &Path
) -> Result<Option<StandardLibrary>, StandardLibraryError>
pub fn find_global(&self, names: &[String]) -> Option<&Field>
[src]
pub fn unstruct<'a>(&'a self, field: &'a Field) -> &'a Field
[src]
pub fn extend(&mut self, other: StandardLibrary)
[src]
pub fn inflate(&mut self)
[src]
Trait Implementations
impl Clone for StandardLibrary
[src]
impl Clone for StandardLibrary
[src]fn clone(&self) -> StandardLibrary
[src]
fn clone(&self) -> StandardLibrary
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for StandardLibrary
[src]
impl Debug for StandardLibrary
[src]impl Default for StandardLibrary
[src]
impl Default for StandardLibrary
[src]fn default() -> StandardLibrary
[src]
fn default() -> StandardLibrary
[src]Returns the “default value” for a type. Read more
impl<'de> Deserialize<'de> for StandardLibrary
[src]
impl<'de> Deserialize<'de> for StandardLibrary
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<StandardLibrary> for StandardLibrary
[src]
impl PartialEq<StandardLibrary> for StandardLibrary
[src]fn eq(&self, other: &StandardLibrary) -> bool
[src]
fn eq(&self, other: &StandardLibrary) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &StandardLibrary) -> bool
[src]
fn ne(&self, other: &StandardLibrary) -> bool
[src]This method tests for !=
.
impl Serialize for StandardLibrary
[src]
impl Serialize for StandardLibrary
[src]impl Eq for StandardLibrary
[src]
impl StructuralEq for StandardLibrary
[src]
impl StructuralPartialEq for StandardLibrary
[src]
Auto Trait Implementations
impl RefUnwindSafe for StandardLibrary
impl Send for StandardLibrary
impl Sync for StandardLibrary
impl Unpin for StandardLibrary
impl UnwindSafe for StandardLibrary
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,