pub struct LazyComponentIR {
pub component_id: String,
pub import_path: String,
pub fallback: Option<ComponentIR>,
pub loading_strategy: LoadingStrategy,
}
Fields§
§component_id: String
§import_path: String
§fallback: Option<ComponentIR>
§loading_strategy: LoadingStrategy
Trait Implementations§
Source§impl Clone for LazyComponentIR
impl Clone for LazyComponentIR
Source§fn clone(&self) -> LazyComponentIR
fn clone(&self) -> LazyComponentIR
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 LazyComponentIR
impl Debug for LazyComponentIR
Source§impl<'de> Deserialize<'de> for LazyComponentIR
impl<'de> Deserialize<'de> for LazyComponentIR
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
Source§impl PartialEq for LazyComponentIR
impl PartialEq for LazyComponentIR
Source§impl Serialize for LazyComponentIR
impl Serialize for LazyComponentIR
impl StructuralPartialEq for LazyComponentIR
Auto Trait Implementations§
impl Freeze for LazyComponentIR
impl RefUnwindSafe for LazyComponentIR
impl Send for LazyComponentIR
impl Sync for LazyComponentIR
impl Unpin for LazyComponentIR
impl UnwindSafe for LazyComponentIR
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