Struct azure_devops_rust_api::wit::models::StreamedBatch
source · pub struct StreamedBatch {
pub continuation_token: Option<String>,
pub is_last_batch: Option<bool>,
pub next_link: Option<String>,
pub values: Vec<String>,
}
Expand description
The class describes reporting work item revision batch.
Fields§
§continuation_token: Option<String>
ContinuationToken acts as a waterMark. Used while querying large results.
is_last_batch: Option<bool>
Returns ‘true’ if it’s last batch, ‘false’ otherwise.
next_link: Option<String>
The next link for the work item.
values: Vec<String>
Values such as rel, sourceId, TargetId, ChangedDate, isActive.
Implementations§
source§impl StreamedBatch
impl StreamedBatch
Trait Implementations§
source§impl Clone for StreamedBatch
impl Clone for StreamedBatch
source§fn clone(&self) -> StreamedBatch
fn clone(&self) -> StreamedBatch
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 StreamedBatch
impl Debug for StreamedBatch
source§impl Default for StreamedBatch
impl Default for StreamedBatch
source§fn default() -> StreamedBatch
fn default() -> StreamedBatch
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for StreamedBatch
impl<'de> Deserialize<'de> for StreamedBatch
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 StreamedBatch
impl PartialEq for StreamedBatch
source§fn eq(&self, other: &StreamedBatch) -> bool
fn eq(&self, other: &StreamedBatch) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for StreamedBatch
impl Serialize for StreamedBatch
impl StructuralPartialEq for StreamedBatch
Auto Trait Implementations§
impl RefUnwindSafe for StreamedBatch
impl Send for StreamedBatch
impl Sync for StreamedBatch
impl Unpin for StreamedBatch
impl UnwindSafe for StreamedBatch
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