pub struct SchemaRecommendations {
pub issues: Vec<SchemaIssue>,
pub suggestions: Vec<String>,
}Expand description
Schema recommendations based on analysis.
Fields§
§issues: Vec<SchemaIssue>Issues found in the schema.
suggestions: Vec<String>Suggestions for improvement.
Trait Implementations§
Source§impl Clone for SchemaRecommendations
impl Clone for SchemaRecommendations
Source§fn clone(&self) -> SchemaRecommendations
fn clone(&self) -> SchemaRecommendations
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 moreAuto Trait Implementations§
impl Freeze for SchemaRecommendations
impl RefUnwindSafe for SchemaRecommendations
impl Send for SchemaRecommendations
impl Sync for SchemaRecommendations
impl Unpin for SchemaRecommendations
impl UnwindSafe for SchemaRecommendations
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