pub struct IsleCompilations {
pub items: Vec<IsleCompilation>,
}
Expand description
A list of compilations (transformations from ISLE source to generated Rust source) that exist in the repository.
This list is used either to regenerate the Rust source in-tree (if
the rebuild-isle
feature is enabled), or to verify that the ISLE
source in-tree corresponds to the ISLE source that was last used
to rebuild the Rust source (if the rebuild-isle
feature is not
enabled).
Fields§
§items: Vec<IsleCompilation>
Implementations§
Source§impl IsleCompilations
impl IsleCompilations
pub fn lookup(&self, name: &str) -> Option<&IsleCompilation>
Trait Implementations§
Source§impl Clone for IsleCompilations
impl Clone for IsleCompilations
Source§fn clone(&self) -> IsleCompilations
fn clone(&self) -> IsleCompilations
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for IsleCompilations
impl RefUnwindSafe for IsleCompilations
impl Send for IsleCompilations
impl Sync for IsleCompilations
impl Unpin for IsleCompilations
impl UnwindSafe for IsleCompilations
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