pub struct CodeRepositoryIndexStartResponse {
pub metadata: ApiMetadata,
pub scope: CodeRepositoryScopeMetadata,
pub summary: Option<CodeIndexSummary>,
pub status: CodeRepositoryStatus,
pub task: Option<CodeIndexTaskRecord>,
pub checkpoint: Option<CodeIndexCheckpoint>,
}Expand description
Code repository index start response for queued or no-op index requests.
Fields§
§metadata: ApiMetadata§scope: CodeRepositoryScopeMetadata§summary: Option<CodeIndexSummary>§status: CodeRepositoryStatus§task: Option<CodeIndexTaskRecord>§checkpoint: Option<CodeIndexCheckpoint>Trait Implementations§
Source§impl Clone for CodeRepositoryIndexStartResponse
impl Clone for CodeRepositoryIndexStartResponse
Source§fn clone(&self) -> CodeRepositoryIndexStartResponse
fn clone(&self) -> CodeRepositoryIndexStartResponse
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<'de> Deserialize<'de> for CodeRepositoryIndexStartResponse
impl<'de> Deserialize<'de> for CodeRepositoryIndexStartResponse
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 CodeRepositoryIndexStartResponse
impl PartialEq for CodeRepositoryIndexStartResponse
Source§fn eq(&self, other: &CodeRepositoryIndexStartResponse) -> bool
fn eq(&self, other: &CodeRepositoryIndexStartResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CodeRepositoryIndexStartResponse
impl StructuralPartialEq for CodeRepositoryIndexStartResponse
Auto Trait Implementations§
impl Freeze for CodeRepositoryIndexStartResponse
impl RefUnwindSafe for CodeRepositoryIndexStartResponse
impl Send for CodeRepositoryIndexStartResponse
impl Sync for CodeRepositoryIndexStartResponse
impl Unpin for CodeRepositoryIndexStartResponse
impl UnsafeUnpin for CodeRepositoryIndexStartResponse
impl UnwindSafe for CodeRepositoryIndexStartResponse
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