pub struct RepositoryContextInfo {
pub kind: String,
pub parent_repository: Option<String>,
pub target_thread: Option<String>,
pub parent_thread: Option<String>,
}Fields§
§kind: String§parent_repository: Option<String>§target_thread: Option<String>§parent_thread: Option<String>Trait Implementations§
Source§impl Clone for RepositoryContextInfo
impl Clone for RepositoryContextInfo
Source§fn clone(&self) -> RepositoryContextInfo
fn clone(&self) -> RepositoryContextInfo
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 RepositoryContextInfo
impl Debug for RepositoryContextInfo
impl Eq for RepositoryContextInfo
Source§impl JsonSchema for RepositoryContextInfo
impl JsonSchema for RepositoryContextInfo
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 moreSource§impl PartialEq for RepositoryContextInfo
impl PartialEq for RepositoryContextInfo
Source§fn eq(&self, other: &RepositoryContextInfo) -> bool
fn eq(&self, other: &RepositoryContextInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RepositoryContextInfo
impl Serialize for RepositoryContextInfo
impl StructuralPartialEq for RepositoryContextInfo
Auto Trait Implementations§
impl Freeze for RepositoryContextInfo
impl RefUnwindSafe for RepositoryContextInfo
impl Send for RepositoryContextInfo
impl Sync for RepositoryContextInfo
impl Unpin for RepositoryContextInfo
impl UnsafeUnpin for RepositoryContextInfo
impl UnwindSafe for RepositoryContextInfo
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