pub struct ProjectionLoad<T>where
T: Serialize,{
pub ok: bool,
pub available: bool,
pub projection: Option<T>,
pub issues: Vec<ProjectionIssue>,
pub error: Option<String>,
}Fields§
§ok: bool§available: bool§projection: Option<T>§issues: Vec<ProjectionIssue>§error: Option<String>Trait Implementations§
Source§impl<T> Clone for ProjectionLoad<T>
impl<T> Clone for ProjectionLoad<T>
Source§fn clone(&self) -> ProjectionLoad<T>
fn clone(&self) -> ProjectionLoad<T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T> Debug for ProjectionLoad<T>
impl<T> Debug for ProjectionLoad<T>
Auto Trait Implementations§
impl<T> Freeze for ProjectionLoad<T>where
T: Freeze,
impl<T> RefUnwindSafe for ProjectionLoad<T>where
T: RefUnwindSafe,
impl<T> Send for ProjectionLoad<T>where
T: Send,
impl<T> Sync for ProjectionLoad<T>where
T: Sync,
impl<T> Unpin for ProjectionLoad<T>where
T: Unpin,
impl<T> UnsafeUnpin for ProjectionLoad<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for ProjectionLoad<T>where
T: UnwindSafe,
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