pub struct ListRunStepsResponse {
pub object: String,
pub data: Vec<RunStepObject>,
pub first_id: Option<String>,
pub last_id: Option<String>,
pub has_more: bool,
}
Fields§
§object: String
§data: Vec<RunStepObject>
§first_id: Option<String>
§last_id: Option<String>
§has_more: bool
Trait Implementations§
Source§impl Clone for ListRunStepsResponse
impl Clone for ListRunStepsResponse
Source§fn clone(&self) -> ListRunStepsResponse
fn clone(&self) -> ListRunStepsResponse
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 ListRunStepsResponse
impl Debug for ListRunStepsResponse
Source§impl<'de> Deserialize<'de> for ListRunStepsResponse
impl<'de> Deserialize<'de> for ListRunStepsResponse
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 ListRunStepsResponse
impl PartialEq for ListRunStepsResponse
Source§impl Serialize for ListRunStepsResponse
impl Serialize for ListRunStepsResponse
impl StructuralPartialEq for ListRunStepsResponse
Auto Trait Implementations§
impl Freeze for ListRunStepsResponse
impl RefUnwindSafe for ListRunStepsResponse
impl Send for ListRunStepsResponse
impl Sync for ListRunStepsResponse
impl Unpin for ListRunStepsResponse
impl UnwindSafe for ListRunStepsResponse
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