pub struct ChangesInfo {
pub modified: Vec<String>,
pub added: Vec<String>,
pub deleted: Vec<String>,
}Fields§
§modified: Vec<String>§added: Vec<String>§deleted: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for ChangesInfo
impl Clone for ChangesInfo
Source§fn clone(&self) -> ChangesInfo
fn clone(&self) -> ChangesInfo
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 ChangesInfo
impl Debug for ChangesInfo
Source§impl Default for ChangesInfo
impl Default for ChangesInfo
Source§fn default() -> ChangesInfo
fn default() -> ChangesInfo
Returns the “default value” for a type. Read more
Source§impl JsonSchema for ChangesInfo
impl JsonSchema for ChangesInfo
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 ChangesInfo
impl RefUnwindSafe for ChangesInfo
impl Send for ChangesInfo
impl Sync for ChangesInfo
impl Unpin for ChangesInfo
impl UnsafeUnpin for ChangesInfo
impl UnwindSafe for ChangesInfo
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