pub struct CodeRepositorySetQueryResponse {
pub metadata: ApiMetadata,
pub request: CodeRepositorySetQueryRequest,
pub status: CodeRepositorySetStatus,
pub results: Vec<CodeRepositorySetQueryHit>,
pub truncated: bool,
pub degraded_reason: Option<String>,
}Expand description
Repository-set query response.
Fields§
§metadata: ApiMetadata§request: CodeRepositorySetQueryRequest§status: CodeRepositorySetStatus§results: Vec<CodeRepositorySetQueryHit>§truncated: bool§degraded_reason: Option<String>Trait Implementations§
Source§impl Clone for CodeRepositorySetQueryResponse
impl Clone for CodeRepositorySetQueryResponse
Source§fn clone(&self) -> CodeRepositorySetQueryResponse
fn clone(&self) -> CodeRepositorySetQueryResponse
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 CodeRepositorySetQueryResponse
impl<'de> Deserialize<'de> for CodeRepositorySetQueryResponse
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 CodeRepositorySetQueryResponse
impl PartialEq for CodeRepositorySetQueryResponse
Source§fn eq(&self, other: &CodeRepositorySetQueryResponse) -> bool
fn eq(&self, other: &CodeRepositorySetQueryResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CodeRepositorySetQueryResponse
Auto Trait Implementations§
impl Freeze for CodeRepositorySetQueryResponse
impl RefUnwindSafe for CodeRepositorySetQueryResponse
impl Send for CodeRepositorySetQueryResponse
impl Sync for CodeRepositorySetQueryResponse
impl Unpin for CodeRepositorySetQueryResponse
impl UnsafeUnpin for CodeRepositorySetQueryResponse
impl UnwindSafe for CodeRepositorySetQueryResponse
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