pub struct ConflictSideReport {
pub source_state: String,
pub blob_id: Option<String>,
pub range: ConflictRangeReport,
pub hunk_hash: String,
}Fields§
§source_state: String§blob_id: Option<String>§range: ConflictRangeReport§hunk_hash: StringTrait Implementations§
Source§impl Clone for ConflictSideReport
impl Clone for ConflictSideReport
Source§fn clone(&self) -> ConflictSideReport
fn clone(&self) -> ConflictSideReport
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 ConflictSideReport
impl Debug for ConflictSideReport
Source§impl From<&ConflictSide> for ConflictSideReport
impl From<&ConflictSide> for ConflictSideReport
Source§fn from(side: &ConflictSide) -> Self
fn from(side: &ConflictSide) -> Self
Converts to this type from the input type.
Source§impl JsonSchema for ConflictSideReport
impl JsonSchema for ConflictSideReport
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 ConflictSideReport
impl RefUnwindSafe for ConflictSideReport
impl Send for ConflictSideReport
impl Sync for ConflictSideReport
impl Unpin for ConflictSideReport
impl UnsafeUnpin for ConflictSideReport
impl UnwindSafe for ConflictSideReport
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