Struct azure_devops_rust_api::git::models::CommentThreadContext
source · pub struct CommentThreadContext {
pub file_path: Option<String>,
pub left_file_end: Option<CommentPosition>,
pub left_file_start: Option<CommentPosition>,
pub right_file_end: Option<CommentPosition>,
pub right_file_start: Option<CommentPosition>,
}
Expand description
Fields§
§file_path: Option<String>
File path relative to the root of the repository. It’s up to the client to use any path format.
left_file_end: Option<CommentPosition>
§left_file_start: Option<CommentPosition>
§right_file_end: Option<CommentPosition>
§right_file_start: Option<CommentPosition>
Implementations§
Trait Implementations§
source§impl Clone for CommentThreadContext
impl Clone for CommentThreadContext
source§fn clone(&self) -> CommentThreadContext
fn clone(&self) -> CommentThreadContext
Returns a copy of the value. Read more
1.0.0 · 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 CommentThreadContext
impl Debug for CommentThreadContext
source§impl Default for CommentThreadContext
impl Default for CommentThreadContext
source§fn default() -> CommentThreadContext
fn default() -> CommentThreadContext
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CommentThreadContext
impl<'de> Deserialize<'de> for CommentThreadContext
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 CommentThreadContext
impl PartialEq for CommentThreadContext
source§fn eq(&self, other: &CommentThreadContext) -> bool
fn eq(&self, other: &CommentThreadContext) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CommentThreadContext
impl Serialize for CommentThreadContext
impl StructuralPartialEq for CommentThreadContext
Auto Trait Implementations§
impl Freeze for CommentThreadContext
impl RefUnwindSafe for CommentThreadContext
impl Send for CommentThreadContext
impl Sync for CommentThreadContext
impl Unpin for CommentThreadContext
impl UnwindSafe for CommentThreadContext
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