pub struct SemanticChangeEntry {
pub change_type: String,
pub description: String,
pub path: Option<String>,
pub from_path: Option<String>,
pub to_path: Option<String>,
pub old_name: Option<String>,
pub new_name: Option<String>,
pub importance: Option<String>,
}Fields§
§change_type: String§description: String§path: Option<String>§from_path: Option<String>§to_path: Option<String>§old_name: Option<String>§new_name: Option<String>§importance: Option<String>Trait Implementations§
Source§impl Clone for SemanticChangeEntry
impl Clone for SemanticChangeEntry
Source§fn clone(&self) -> SemanticChangeEntry
fn clone(&self) -> SemanticChangeEntry
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 SemanticChangeEntry
impl Debug for SemanticChangeEntry
Source§impl From<SemanticChange> for SemanticChangeEntry
impl From<SemanticChange> for SemanticChangeEntry
Source§fn from(change: SemanticChange) -> Self
fn from(change: SemanticChange) -> Self
Converts to this type from the input type.
Source§impl JsonSchema for SemanticChangeEntry
impl JsonSchema for SemanticChangeEntry
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for SemanticChangeEntry
impl RefUnwindSafe for SemanticChangeEntry
impl Send for SemanticChangeEntry
impl Sync for SemanticChangeEntry
impl Unpin for SemanticChangeEntry
impl UnsafeUnpin for SemanticChangeEntry
impl UnwindSafe for SemanticChangeEntry
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