#[non_exhaustive]pub struct SearchBackgroundJobsResponse {
pub jobs: Vec<BackgroundJobLogEntry>,
/* private fields */
}Expand description
Response message for ‘SearchBackgroundJobs’ request.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.jobs: Vec<BackgroundJobLogEntry>The list of conversion workspace mapping rules.
Implementations§
Trait Implementations§
Source§impl Clone for SearchBackgroundJobsResponse
impl Clone for SearchBackgroundJobsResponse
Source§fn clone(&self) -> SearchBackgroundJobsResponse
fn clone(&self) -> SearchBackgroundJobsResponse
Returns a duplicate 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 SearchBackgroundJobsResponse
impl Debug for SearchBackgroundJobsResponse
Source§impl Default for SearchBackgroundJobsResponse
impl Default for SearchBackgroundJobsResponse
Source§fn default() -> SearchBackgroundJobsResponse
fn default() -> SearchBackgroundJobsResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for SearchBackgroundJobsResponse
impl PartialEq for SearchBackgroundJobsResponse
Source§fn eq(&self, other: &SearchBackgroundJobsResponse) -> bool
fn eq(&self, other: &SearchBackgroundJobsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SearchBackgroundJobsResponse
Auto Trait Implementations§
impl Freeze for SearchBackgroundJobsResponse
impl RefUnwindSafe for SearchBackgroundJobsResponse
impl Send for SearchBackgroundJobsResponse
impl Sync for SearchBackgroundJobsResponse
impl Unpin for SearchBackgroundJobsResponse
impl UnwindSafe for SearchBackgroundJobsResponse
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