pub struct Library<R: RealNumberInternalTrait>(/* private fields */);
Implementations§
Source§impl<R: RealNumberInternalTrait> Library<R>
impl<R: RealNumberInternalTrait> Library<R>
pub fn new( library_name: LibraryName, definitions: impl IntoIterator<Item = (String, Value<R>)>, ) -> Self
pub fn name(&self) -> &LibraryName
pub fn iter_definitions(&self) -> impl Iterator<Item = (&String, &Value<R>)>
Trait Implementations§
impl<R: RealNumberInternalTrait> StructuralPartialEq for Library<R>
Auto Trait Implementations§
impl<R> Freeze for Library<R>
impl<R> !RefUnwindSafe for Library<R>
impl<R> !Send for Library<R>
impl<R> !Sync for Library<R>
impl<R> Unpin for Library<R>where
R: Unpin,
impl<R> !UnwindSafe for Library<R>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more