pub struct LoadResult {
pub schemas_loaded: usize,
pub udts_loaded: usize,
pub errors: Vec<SchemaLoadError>,
pub warnings: Vec<SchemaLoadWarning>,
}Expand description
Result of schema loading operation
Fields§
§schemas_loaded: usizeNumber of table schemas successfully loaded
udts_loaded: usizeNumber of UDTs successfully loaded
errors: Vec<SchemaLoadError>Errors encountered during loading
warnings: Vec<SchemaLoadWarning>Warnings encountered during loading
Trait Implementations§
Source§impl Clone for LoadResult
impl Clone for LoadResult
Source§fn clone(&self) -> LoadResult
fn clone(&self) -> LoadResult
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 moreAuto Trait Implementations§
impl Freeze for LoadResult
impl RefUnwindSafe for LoadResult
impl Send for LoadResult
impl Sync for LoadResult
impl Unpin for LoadResult
impl UnsafeUnpin for LoadResult
impl UnwindSafe for LoadResult
Blanket Implementations§
impl<T> Allocation for T
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