pub struct CompiledForm {
pub ir_cadi: Option<String>,
pub blob_cadi: Option<String>,
pub architectures: Vec<String>,
pub derived_at: Option<String>,
pub compiler: Option<String>,
pub deterministic: Option<bool>,
}Expand description
Link to a compiled form
Fields§
§ir_cadi: Option<String>§blob_cadi: Option<String>§architectures: Vec<String>§derived_at: Option<String>§compiler: Option<String>§deterministic: Option<bool>Trait Implementations§
Source§impl Clone for CompiledForm
impl Clone for CompiledForm
Source§fn clone(&self) -> CompiledForm
fn clone(&self) -> CompiledForm
Returns a duplicate 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 moreSource§impl Debug for CompiledForm
impl Debug for CompiledForm
Source§impl<'de> Deserialize<'de> for CompiledForm
impl<'de> Deserialize<'de> for CompiledForm
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CompiledForm
impl RefUnwindSafe for CompiledForm
impl Send for CompiledForm
impl Sync for CompiledForm
impl Unpin for CompiledForm
impl UnwindSafe for CompiledForm
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