pub struct PipelineList {
pub data: Vec<Pipeline>,
pub next_cursor: Option<String>,
}Expand description
A page of an organization’s pipelines, with an opaque cursor.
JSON schema
{
"title": "PipelineList",
"description": "A page of an organization's pipelines, with an opaque
cursor.",
"type": "object",
"required": [
"data",
"next_cursor"
],
"properties": {
"data": {
"description": "The pipelines on this page.",
"type": "array",
"items": {
"$ref": "#/components/schemas/Pipeline"
}
},
"next_cursor": {
"description": "Opaque cursor for the next page. Pass it as the
`cursor` query parameter; `null` when there are no more pages.",
"type": [
"string",
"null"
]
}
}
}Fields§
§data: Vec<Pipeline>The pipelines on this page.
next_cursor: Option<String>Opaque cursor for the next page. Pass it as the cursor query
parameter; null when there are no more pages.
Trait Implementations§
Source§impl Clone for PipelineList
impl Clone for PipelineList
Source§fn clone(&self) -> PipelineList
fn clone(&self) -> PipelineList
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 Debug for PipelineList
impl Debug for PipelineList
Source§impl<'de> Deserialize<'de> for PipelineList
impl<'de> Deserialize<'de> for PipelineList
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PipelineList, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PipelineList, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for PipelineList
impl Serialize for PipelineList
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for PipelineList
impl RefUnwindSafe for PipelineList
impl Send for PipelineList
impl Sync for PipelineList
impl Unpin for PipelineList
impl UnsafeUnpin for PipelineList
impl UnwindSafe for PipelineList
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