pub struct ToolSchemaReport {
pub tool_name: String,
pub schema: Value,
pub lints: Vec<ToolSchemaLint>,
}Fields§
§tool_name: String§schema: Value§lints: Vec<ToolSchemaLint>Trait Implementations§
Source§impl Clone for ToolSchemaReport
impl Clone for ToolSchemaReport
Source§fn clone(&self) -> ToolSchemaReport
fn clone(&self) -> ToolSchemaReport
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 Debug for ToolSchemaReport
impl Debug for ToolSchemaReport
Source§impl<'de> Deserialize<'de> for ToolSchemaReport
impl<'de> Deserialize<'de> for ToolSchemaReport
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 ToolSchemaReport
impl PartialEq for ToolSchemaReport
Source§fn eq(&self, other: &ToolSchemaReport) -> bool
fn eq(&self, other: &ToolSchemaReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ToolSchemaReport
impl Serialize for ToolSchemaReport
impl StructuralPartialEq for ToolSchemaReport
Auto Trait Implementations§
impl Freeze for ToolSchemaReport
impl RefUnwindSafe for ToolSchemaReport
impl Send for ToolSchemaReport
impl Sync for ToolSchemaReport
impl Unpin for ToolSchemaReport
impl UnsafeUnpin for ToolSchemaReport
impl UnwindSafe for ToolSchemaReport
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