pub struct RepeatDealingApi<'a> { /* private fields */ }Expand description
Typed accessor for the /repeat-dealing-window endpoint.
Obtain via IgClient::repeat_dealing.
Implementations§
Source§impl RepeatDealingApi<'_>
impl RepeatDealingApi<'_>
Sourcepub async fn window(&self) -> Result<Vec<RepeatDealingWindow>>
pub async fn window(&self) -> Result<Vec<RepeatDealingWindow>>
Fetch all active repeat-dealing windows.
Retries up to 5 times with a 1-second delay on transient errors, mirroring the Python library’s behaviour.
Sourcepub async fn window_for(&self, epic: &Epic) -> Result<Vec<RepeatDealingWindow>>
pub async fn window_for(&self, epic: &Epic) -> Result<Vec<RepeatDealingWindow>>
Fetch the repeat-dealing window for a specific epic.
Retries up to 5 times with a 1-second delay on transient errors, mirroring the Python library’s behaviour.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for RepeatDealingApi<'a>
impl<'a> !RefUnwindSafe for RepeatDealingApi<'a>
impl<'a> Send for RepeatDealingApi<'a>
impl<'a> Sync for RepeatDealingApi<'a>
impl<'a> Unpin for RepeatDealingApi<'a>
impl<'a> UnsafeUnpin for RepeatDealingApi<'a>
impl<'a> !UnwindSafe for RepeatDealingApi<'a>
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more