pub struct ListItinerariesQuery {
pub window: Option<CostWindow>,
pub state: Option<ItineraryState>,
}Expand description
query parameters for listItineraries.
Fields§
§window: Option<CostWindow>How far back to look. Defaults to the last 24 hours, because a dashboard opening on ninety days of chains is answering a question nobody asked.
state: Option<ItineraryState>Only chains in this state.
Trait Implementations§
Source§impl Clone for ListItinerariesQuery
impl Clone for ListItinerariesQuery
Source§impl Debug for ListItinerariesQuery
impl Debug for ListItinerariesQuery
Source§impl<'de> Deserialize<'de> for ListItinerariesQuery
impl<'de> Deserialize<'de> for ListItinerariesQuery
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 ListItinerariesQuery
impl PartialEq for ListItinerariesQuery
Source§impl Serialize for ListItinerariesQuery
impl Serialize for ListItinerariesQuery
impl StructuralPartialEq for ListItinerariesQuery
Auto Trait Implementations§
impl Freeze for ListItinerariesQuery
impl RefUnwindSafe for ListItinerariesQuery
impl Send for ListItinerariesQuery
impl Sync for ListItinerariesQuery
impl Unpin for ListItinerariesQuery
impl UnsafeUnpin for ListItinerariesQuery
impl UnwindSafe for ListItinerariesQuery
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