pub struct AtCoderClient;
Implementations§
Source§impl AtCoderClient
impl AtCoderClient
pub async fn fetch_atcoder_contests( &self, page: u32, ) -> Result<Vec<AtCoderContest>>
Sourcepub async fn fetch_atcoder_submission_list(
&self,
contest_id: &str,
page: Option<u32>,
) -> Result<AtCoderSubmissionListResponse>
pub async fn fetch_atcoder_submission_list( &self, contest_id: &str, page: Option<u32>, ) -> Result<AtCoderSubmissionListResponse>
Fetch a list of submissions.
pub async fn fetch_problem_list( &self, contest_id: &str, ) -> Result<Vec<AtCoderProblem>>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AtCoderClient
impl RefUnwindSafe for AtCoderClient
impl Send for AtCoderClient
impl Sync for AtCoderClient
impl Unpin for AtCoderClient
impl UnwindSafe for AtCoderClient
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