shared::api::endpoints

Trait PathParts

Source
pub trait PathParts {
    const PATH: &'static str;

    // Required method
    fn get_filled(&self) -> String;
}
Expand description

Path of ApiEndpoint

Required Associated Constants§

Source

const PATH: &'static str

API path

Required Methods§

Source

fn get_filled(&self) -> String

path path with placeholders replaced with values

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl PathParts for CreateAssetResourcePath

Source§

const PATH: &'static str = "/v1/additional-resource/draft"

Source§

impl PathParts for DeleteAssetResourcePath

Source§

const PATH: &'static str = "/v1/additional-resource/{additional_resource_id}/draft"

Source§

impl PathParts for GetAssetResourceDraftPath

Source§

const PATH: &'static str = "/v1/additional-resource/{additional_resource_id}/draft"

Source§

impl PathParts for GetAssetResourceLivePath

Source§

const PATH: &'static str = "/v1/additional-resource/{additional_resource_id}/live"

Source§

impl PathParts for UpdateAssetResourcePath

Source§

const PATH: &'static str = "/v1/additional-resource/{additional_resource_id}"

Source§

impl PathParts for AdminJigExportPath

Source§

const PATH: &'static str = "/v1/admin/export/jigs"

Source§

impl PathParts for AdminPlaylistExportPath

Source§

const PATH: &'static str = "/v1/admin/export/playlists"

Source§

impl PathParts for AdminSchoolAccountPath

Source§

const PATH: &'static str = "/v1/admin/schools/{school_id}"

Source§

impl PathParts for AdminSchoolsPath

Source§

const PATH: &'static str = "/v1/admin/schools"

Source§

impl PathParts for AdminUserExportPath

Source§

const PATH: &'static str = "/v1/admin/export/users"

Source§

impl PathParts for AdminVerifySchoolPath

Source§

const PATH: &'static str = "/v1/admin/schools/verify"

Source§

impl PathParts for DeleteUserAccountPath

Source§

const PATH: &'static str = "/v1/admin/users/{user_id}/account"

Source§

impl PathParts for ImportSchoolNamesPath

Source§

const PATH: &'static str = "/v1/admin/import-school-names"

Source§

impl PathParts for InviteSchoolUsersPath

Source§

const PATH: &'static str = "/v1/admin/invite-users"

Source§

impl PathParts for RemoveUserFromSchoolPath

Source§

const PATH: &'static str = "/v1/admin/schools/{school_id}/users"

Source§

impl PathParts for SchoolNamesPath

Source§

const PATH: &'static str = "/v1/admin/school-names"

Source§

impl PathParts for SetAccountTierOverridePath

Source§

const PATH: &'static str = "/v1/admin/users/{user_id}/tier-override"

Source§

impl PathParts for SetInternalSchoolNamePath

Source§

const PATH: &'static str = "/v1/admin/schools/{school_id}/school-name"

Source§

impl PathParts for UpdateSchoolNamePath

Source§

const PATH: &'static str = "/v1/admin/school-names/{school_name_id}"

Source§

impl PathParts for AnimationCreatePath

Source§

const PATH: &'static str = "/v1/animation"

Source§

impl PathParts for AnimationDeletePath

Source§

const PATH: &'static str = "/v1/animation/{animation_id}"

Source§

impl PathParts for AnimationGetPath

Source§

const PATH: &'static str = "/v1/animation/{animation_id}"

Source§

impl PathParts for AnimationUploadPath

Source§

const PATH: &'static str = "/v1/animation/{animation_id}/raw"

Source§

impl PathParts for UserAudioCreatePath

Source§

const PATH: &'static str = "/v1/user/me/audio"

Source§

impl PathParts for UserAudioDeletePath

Source§

const PATH: &'static str = "/v1/user/me/audio/{audio_id}"

Source§

impl PathParts for UserAudioGetPath

Source§

const PATH: &'static str = "/v1/user/me/audio/{audio_id}"

Source§

impl PathParts for UserAudioListPath

Source§

const PATH: &'static str = "/v1/user/me/audio"

Source§

impl PathParts for UserAudioUploadPath

Source§

const PATH: &'static str = "/v1/user/me/audio/{audio_id}/raw"

Source§

impl PathParts for AdminUpgradeSubscriptionPlanPath

Source§

const PATH: &'static str = "/v1/admin/billing/subscription/upgrade"

Source§

impl PathParts for CreateCustomerPortalLinkPath

Source§

const PATH: &'static str = "/v1/billing/customer-portal"

Source§

impl PathParts for CreateSchoolAccountPath

Source§

const PATH: &'static str = "/v1/schools"

Source§

impl PathParts for CreateSetupIntentPath

Source§

const PATH: &'static str = "/v1/billing/payment-method"

Source§

impl PathParts for CreateSubscriptionPath

Source§

const PATH: &'static str = "/v1/billing/subscribe"

Source§

impl PathParts for IndividualAccountPath

Source§

const PATH: &'static str = "/v1/user/me/account"

Source§

impl PathParts for SchoolAccountPath

Source§

const PATH: &'static str = "/v1/schools/{school_id}"

Source§

impl PathParts for SubscriptionPlanPath

Source§

const PATH: &'static str = "/v1/plans"

Source§

impl PathParts for UpdateSubscriptionCancellationPath

Source§

const PATH: &'static str = "/v1/billing/subscription/cancel"

Source§

impl PathParts for UpdateSubscriptionPausedPath

Source§

const PATH: &'static str = "/v1/billing/subscription/pause"

Source§

impl PathParts for UpgradeSubscriptionPlanPath

Source§

const PATH: &'static str = "/v1/billing/subscription/upgrade"

Source§

impl PathParts for CreateCategoryPath

Source§

const PATH: &'static str = "/v1/category"

Source§

impl PathParts for DeleteCategoryPath

Source§

const PATH: &'static str = "/v1/category/{category_id}"

Source§

impl PathParts for GetCategoryPath

Source§

const PATH: &'static str = "/v1/category"

Source§

impl PathParts for UpdateCategoryPath

Source§

const PATH: &'static str = "/v1/category/{category_id}"

Source§

impl PathParts for CircleBrowseMembersPath

Source§

const PATH: &'static str = "/v1/circle/{circle_id}/members"

Source§

impl PathParts for CircleBrowsePath

Source§

const PATH: &'static str = "/v1/circle/browse"

Source§

impl PathParts for CircleCreatePath

Source§

const PATH: &'static str = "/v1/circle"

Source§

impl PathParts for CircleDeletePath

Source§

const PATH: &'static str = "/v1/circle/{circle_id}"

Source§

impl PathParts for CircleGetPath

Source§

const PATH: &'static str = "/v1/circle/{circle_id}"

Source§

impl PathParts for CircleRemoveMemberPath

Source§

const PATH: &'static str = "/v1/circle/{circle_id}/members/{user_id}"

Source§

impl PathParts for CircleSearchPath

Source§

const PATH: &'static str = "/v1/circle"

Source§

impl PathParts for JoinCirclePath

Source§

const PATH: &'static str = "/v1/circle/{circle_id}/join"

Source§

impl PathParts for LeaveCirclePath

Source§

const PATH: &'static str = "/v1/circle/{circle_id}/leave"

Source§

impl PathParts for UpdateCirclePath

Source§

const PATH: &'static str = "/v1/circle/{circle_id}"

Source§

impl PathParts for CourseAdminDataUpdatePath

Source§

const PATH: &'static str = "/v1/course/{course_id}/admin"

Source§

impl PathParts for CourseBrowsePath

Source§

const PATH: &'static str = "/v1/course/browse"

Source§

impl PathParts for CourseClonePath

Source§

const PATH: &'static str = "/v1/course/{course_id}/clone"

Source§

impl PathParts for CourseCreatePath

Source§

const PATH: &'static str = "/v1/course"

Source§

impl PathParts for CourseDeletePath

Source§

const PATH: &'static str = "/v1/course/{course_id}"

Source§

impl PathParts for CourseGetDraftPath

Source§

const PATH: &'static str = "/v1/course/{course_id}/draft"

Source§

impl PathParts for CourseGetLivePath

Source§

const PATH: &'static str = "/v1/course/{course_id}/live"

Source§

impl PathParts for CoursePlayPath

Source§

const PATH: &'static str = "/v1/course/{course_id}/play"

Source§

impl PathParts for CoursePublishPath

Source§

const PATH: &'static str = "/v1/course/{course_id}/draft/publish"

Source§

impl PathParts for CourseSearchPath

Source§

const PATH: &'static str = "/v1/course"

Source§

impl PathParts for CourseUpdateDraftDataPath

Source§

const PATH: &'static str = "/v1/course/{course_id}"

Source§

impl PathParts for CreateCourseUnitPath

Source§

const PATH: &'static str = "/v1/course/{course_id}/unit"

Source§

impl PathParts for DeleteCourseUnitPath

Source§

const PATH: &'static str = "/v1/course/{course_id}/unit/{course_unit_id}/draft"

Source§

impl PathParts for GetCourseUnitDraftPath

Source§

const PATH: &'static str = "/v1/course/{course_id}/unit/{course_unit_id}/draft"

Source§

impl PathParts for GetCourseUnitLivePath

Source§

const PATH: &'static str = "/v1/course/{course_id}/unit/{course_unit_id}/live"

Source§

impl PathParts for UpdateCourseUnitPath

Source§

const PATH: &'static str = "/v1/course/{course_id}/unit/{course_unit_id}"

Source§

impl PathParts for UserRecentImageDeletePath

Source§

const PATH: &'static str = "/v1/user/me/recent/image/{uuid}"

Source§

impl PathParts for UserRecentImageListPath

Source§

const PATH: &'static str = "/v1/user/me/recent/image"

Source§

impl PathParts for UserRecentImageUpsertPath

Source§

const PATH: &'static str = "/v1/user/me/recent/image"

Source§

impl PathParts for ImageBrowsePath

Source§

const PATH: &'static str = "/v1/image/browse"

Source§

impl PathParts for ImageCreatePath

Source§

const PATH: &'static str = "/v1/image"

Source§

impl PathParts for ImageDeletePath

Source§

const PATH: &'static str = "/v1/image/{image_id}"

Source§

impl PathParts for ImageGetPath

Source§

const PATH: &'static str = "/v1/image/{image_id}"

Source§

impl PathParts for ImagePutPath

Source§

const PATH: &'static str = "/v1/image/{image_id}/use"

Source§

impl PathParts for ImageSearchPath

Source§

const PATH: &'static str = "/v1/image"

Source§

impl PathParts for ImageUpdatePath

Source§

const PATH: &'static str = "/v1/image/{image_id}"

Source§

impl PathParts for ImageUploadPath

Source§

const PATH: &'static str = "/v1/image/{image_id}/raw"

Source§

impl PathParts for ImageTagCreatePath

Source§

const PATH: &'static str = "/v1/image/tag/{i_16}"

Source§

impl PathParts for ImageTagDeletePath

Source§

const PATH: &'static str = "/v1/image/tag/{i_16}"

Source§

impl PathParts for ImageTagListPath

Source§

const PATH: &'static str = "/v1/image/tag/all"

Source§

impl PathParts for ImageTagUpdatePath

Source§

const PATH: &'static str = "/v1/image/tag/{i_16}"

Source§

impl PathParts for UserImageCreatePath

Source§

const PATH: &'static str = "/v1/user/me/image"

Source§

impl PathParts for UserImageDeletePath

Source§

const PATH: &'static str = "/v1/user/me/image/{image_id}"

Source§

impl PathParts for UserImageGetPath

Source§

const PATH: &'static str = "/v1/user/me/image/{image_id}"

Source§

impl PathParts for UserImageListPath

Source§

const PATH: &'static str = "/v1/user/me/image"

Source§

impl PathParts for UserImageUploadPath

Source§

const PATH: &'static str = "/v1/user/me/image/{image_id}/raw"

Source§

impl PathParts for PlayerSessionInstanceCompletePath

Source§

const PATH: &'static str = "/v1/jig/codes/instance/complete"

Source§

impl PathParts for PlayerSessionInstanceCreatePath

Source§

const PATH: &'static str = "/v1/jig/codes/instance"

Source§

impl PathParts for JigCodeListPath

Source§

const PATH: &'static str = "/v1/jig/codes"

Source§

impl PathParts for JigCodePath

Source§

const PATH: &'static str = "/v1/jig/codes/{jig_code}"

Source§

impl PathParts for JigCodeSessionsPath

Source§

const PATH: &'static str = "/v1/jig/codes/{jig_code}/sessions"

Source§

impl PathParts for JigPlayerSessionCreatePath

Source§

const PATH: &'static str = "/v1/jig/codes"

Source§

impl PathParts for JigsWithCodesPath

Source§

const PATH: &'static str = "/v1/jig/codes/jig-codes"

Source§

impl PathParts for JigCurationCommentCreatePath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/curation/comment"

Source§

impl PathParts for JigCurationCommentGetPath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/curation/comment/{comment_id}"

Source§

impl PathParts for JigCurationPath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/curation"

Source§

impl PathParts for JigCurationUpdatePath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/curation"

Source§

impl PathParts for CreateJigReportPath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/report"

Source§

impl PathParts for GetJigReportPath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/report/{report_id}"

Source§

impl PathParts for GetJigPlaylistsPath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/playlists"

Source§

impl PathParts for JigAdminDataUpdatePath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/admin"

Source§

impl PathParts for JigBrowsePath

Source§

const PATH: &'static str = "/v1/jig/browse"

Source§

impl PathParts for JigClonePath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/clone"

Source§

impl PathParts for JigCountPath

Source§

const PATH: &'static str = "/v1/jig/count"

Source§

impl PathParts for JigCoverPath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/cover"

Source§

impl PathParts for JigCreatePath

Source§

const PATH: &'static str = "/v1/jig"

Source§

impl PathParts for JigDeleteAllPath

Source§

const PATH: &'static str = "/v1/jig"

Source§

impl PathParts for JigDeletePath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}"

Source§

impl PathParts for JigFeaturedPath

Source§

const PATH: &'static str = "/v1/jig/featured"

Source§

impl PathParts for JigGetDraftPath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/draft"

Source§

impl PathParts for JigGetLivePath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/live"

Source§

impl PathParts for JigLikePath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/like"

Source§

impl PathParts for JigLikedPath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/like"

Source§

impl PathParts for JigPlayPath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/play"

Source§

impl PathParts for JigPublishPath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/draft/publish"

Source§

impl PathParts for JigSearchPath

Source§

const PATH: &'static str = "/v1/jig"

Source§

impl PathParts for JigTransferAdminPath

Source§

const PATH: &'static str = "/v1/jig/admin/transfer"

Source§

impl PathParts for JigTrendingPath

Source§

const PATH: &'static str = "/v1/jig/trending"

Source§

impl PathParts for JigUnlikePath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/unlike"

Source§

impl PathParts for JigUpdateDraftDataPath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}"

Source§

impl PathParts for shared::domain::jig::ListLikedPath

Source§

const PATH: &'static str = "/v1/jig/likes"

Source§

impl PathParts for ListPlayedPath

Source§

const PATH: &'static str = "/v1/jig/played"

Source§

impl PathParts for CreateEntryPath

Source§

const PATH: &'static str = "/v1/locale/entry"

Source§

impl PathParts for DeleteEntryPath

Source§

const PATH: &'static str = "/v1/locale/entry/{u_32}"

Source§

impl PathParts for GetEntryPath

Source§

const PATH: &'static str = "/v1/locale/entry/{u_32}"

Source§

impl PathParts for ListBundlePath

Source§

const PATH: &'static str = "/v1/locale/bundle"

Source§

impl PathParts for ListEntryPath

Source§

const PATH: &'static str = "/v1/locale/entry"

Source§

impl PathParts for ListItemKindPath

Source§

const PATH: &'static str = "/v1/locale/item-kind"

Source§

impl PathParts for UpdateEntryPath

Source§

const PATH: &'static str = "/v1/locale/entry/{u_32}"

Source§

impl PathParts for MediaCreatePath

Source§

const PATH: &'static str = "/v1/media/image/url"

Source§

impl PathParts for MediaIdDeletePath

Source§

const PATH: &'static str = "/v1/media/id/{uuid}"

Source§

impl PathParts for MediaIdGetPath

Source§

const PATH: &'static str = "/v1/media/id/{uuid}"

Source§

impl PathParts for MediaUrlDeletePath

Source§

const PATH: &'static str = "/v1/media/url/{url}"

Source§

impl PathParts for MediaUrlGetPath

Source§

const PATH: &'static str = "/v1/media/url/{url}"

Source§

impl PathParts for GetMetadataPath

Source§

const PATH: &'static str = "/v1/metadata"

Source§

impl PathParts for ModuleCreatePath

Source§

const PATH: &'static str = "/v1/module/draft"

Source§

impl PathParts for ModuleDeletePath

Source§

const PATH: &'static str = "/v1/module/draft/{module_id}"

Source§

impl PathParts for ModuleGetDraftPath

Source§

const PATH: &'static str = "/v1/{asset_type}/module/draft/{module_id}"

Source§

impl PathParts for ModuleGetLivePath

Source§

const PATH: &'static str = "/v1/{asset_type}/module/live/{module_id}"

Source§

impl PathParts for ModuleUploadPath

Source§

const PATH: &'static str = "/v1/module/draft/{module_id}"

Source§

impl PathParts for UserPdfCreatePath

Source§

const PATH: &'static str = "/v1/user/me/pdf"

Source§

impl PathParts for UserPdfDeletePath

Source§

const PATH: &'static str = "/v1/user/me/pdf/{pdf_id}"

Source§

impl PathParts for UserPdfGetPath

Source§

const PATH: &'static str = "/v1/user/me/pdf/{pdf_id}"

Source§

impl PathParts for UserPdfListPath

Source§

const PATH: &'static str = "/v1/user/me/pdf"

Source§

impl PathParts for UserPdfUploadPath

Source§

const PATH: &'static str = "/v1/user/me/pdf/{pdf_id}/raw"

Source§

impl PathParts for shared::domain::playlist::ListLikedPath

Source§

const PATH: &'static str = "/v1/playlist/likes"

Source§

impl PathParts for PlaylistAdminDataUpdatePath

Source§

const PATH: &'static str = "/v1/playlist/{playlist_id}/admin"

Source§

impl PathParts for PlaylistBrowsePath

Source§

const PATH: &'static str = "/v1/playlist/browse"

Source§

impl PathParts for PlaylistClonePath

Source§

const PATH: &'static str = "/v1/playlist/{playlist_id}/clone"

Source§

impl PathParts for PlaylistCreatePath

Source§

const PATH: &'static str = "/v1/playlist"

Source§

impl PathParts for PlaylistDeletePath

Source§

const PATH: &'static str = "/v1/playlist/{playlist_id}"

Source§

impl PathParts for PlaylistGetDraftPath

Source§

const PATH: &'static str = "/v1/playlist/{playlist_id}/draft"

Source§

impl PathParts for PlaylistGetLivePath

Source§

const PATH: &'static str = "/v1/playlist/{playlist_id}/live"

Source§

impl PathParts for PlaylistLikePath

Source§

const PATH: &'static str = "/v1/playlist/{playlist_id}/like"

Source§

impl PathParts for PlaylistLikedPath

Source§

const PATH: &'static str = "/v1/playlist/{playlist_id}/like"

Source§

impl PathParts for PlaylistPublishPath

Source§

const PATH: &'static str = "/v1/playlist/{playlist_id}/draft/publish"

Source§

impl PathParts for PlaylistSearchPath

Source§

const PATH: &'static str = "/v1/playlist"

Source§

impl PathParts for PlaylistUnlikePath

Source§

const PATH: &'static str = "/v1/playlist/{playlist_id}/unlike"

Source§

impl PathParts for PlaylistUpdateDraftDataPath

Source§

const PATH: &'static str = "/v1/playlist/{playlist_id}"

Source§

impl PathParts for PlaylistViewPath

Source§

const PATH: &'static str = "/v1/playlist/{playlist_id}/view"

Source§

impl PathParts for ResourceCurationCommentCreatePath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/curation/comment"

Source§

impl PathParts for ResourceCurationCommentGetPath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/curation/comment/{comment_id}"

Source§

impl PathParts for ResourceCurationPath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/curation"

Source§

impl PathParts for ResourceCurationUpdatePath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/curation"

Source§

impl PathParts for CreateResourceReportPath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/report"

Source§

impl PathParts for GetResourceReportPath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/report/{report_id}"

Source§

impl PathParts for shared::domain::resource::ListLikedPath

Source§

const PATH: &'static str = "/v1/resource/likes"

Source§

impl PathParts for ResourceAdminDataUpdatePath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/admin"

Source§

impl PathParts for ResourceBrowsePath

Source§

const PATH: &'static str = "/v1/resource/browse"

Source§

impl PathParts for ResourceClonePath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/clone"

Source§

impl PathParts for ResourceCountPath

Source§

const PATH: &'static str = "/v1/resource/count"

Source§

impl PathParts for ResourceCoverPath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/cover"

Source§

impl PathParts for ResourceCreatePath

Source§

const PATH: &'static str = "/v1/resource"

Source§

impl PathParts for ResourceDeleteAllPath

Source§

const PATH: &'static str = "/v1/resource"

Source§

impl PathParts for ResourceDeletePath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}"

Source§

impl PathParts for ResourceGetDraftPath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/draft"

Source§

impl PathParts for ResourceGetLivePath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/live"

Source§

impl PathParts for ResourceLikePath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/like"

Source§

impl PathParts for ResourceLikedPath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/like"

Source§

impl PathParts for ResourcePublishPath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/draft/publish"

Source§

impl PathParts for ResourceSearchPath

Source§

const PATH: &'static str = "/v1/resource"

Source§

impl PathParts for ResourceUnlikePath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/unlike"

Source§

impl PathParts for ResourceUpdateDraftDataPath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}"

Source§

impl PathParts for ResourceViewPath

Source§

const PATH: &'static str = "/v1/resource/{resource_id}/view"

Source§

impl PathParts for CreateSearchKeyPath

Source§

const PATH: &'static str = "/v1/search/key"

Source§

impl PathParts for WebImageSearchPath

Source§

const PATH: &'static str = "/v1/search/web/image"

Source§

impl PathParts for CreateSessionOAuthPath

Source§

const PATH: &'static str = "/v1/session/oauth"

Source§

impl PathParts for CreateSessionPath

Source§

const PATH: &'static str = "/v1/session"

Source§

impl PathParts for DeleteSessionPath

Source§

const PATH: &'static str = "/v1/session"

Source§

impl PathParts for GetOAuthPath

Source§

const PATH: &'static str = "/v1/session/oauth/url/{get_o_auth_url_service_kind}/{o_auth_url_kind}"

Source§

impl PathParts for ImpersonatePath

Source§

const PATH: &'static str = "/v1/admin/session/user/{user_id}"

Source§

impl PathParts for BrowsePublicUserFollowersPath

Source§

const PATH: &'static str = "/v1/user/{user_id}/public/follower/browse"

Source§

impl PathParts for BrowsePublicUserFollowingPath

Source§

const PATH: &'static str = "/v1/user/{user_id}/public/following/browse"

Source§

impl PathParts for BrowsePublicUserJigsPath

Source§

const PATH: &'static str = "/v1/user/{user_id}/public/jig/browse"

Source§

impl PathParts for BrowsePublicUserPlaylistsPath

Source§

const PATH: &'static str = "/v1/user/{user_id}/public/playlist/browse"

Source§

impl PathParts for BrowsePublicUserResourcesPath

Source§

const PATH: &'static str = "/v1/user/{user_id}/public/resource/browse"

Source§

impl PathParts for PublicUserBrowsePath

Source§

const PATH: &'static str = "/v1/user/public/browse"

Source§

impl PathParts for PublicUserFollowPath

Source§

const PATH: &'static str = "/v1/user/{user_id}/follow"

Source§

impl PathParts for PublicUserGetPath

Source§

const PATH: &'static str = "/v1/user/{user_id}/public"

Source§

impl PathParts for PublicUserSearchPath

Source§

const PATH: &'static str = "/v1/user/public"

Source§

impl PathParts for PublicUserUnfollowPath

Source§

const PATH: &'static str = "/v1/user/{user_id}/unfollow"

Source§

impl PathParts for ChangePasswordPath

Source§

const PATH: &'static str = "/v1/user/me/password"

Source§

impl PathParts for CreateProfilePath

Source§

const PATH: &'static str = "/v1/user/me/profile"

Source§

impl PathParts for CreateUserPath

Source§

const PATH: &'static str = "/v1/user"

Source§

impl PathParts for GetProfilePath

Source§

const PATH: &'static str = "/v1/user/me/profile"

Source§

impl PathParts for PatchProfileAdminDataPath

Source§

const PATH: &'static str = "/v1/user/me/profile/{user_id}/admin-data"

Source§

impl PathParts for PatchProfilePath

Source§

const PATH: &'static str = "/v1/user/me/profile"

Source§

impl PathParts for ResetEmailPath

Source§

const PATH: &'static str = "/v1/user/me/reset-email"

Source§

impl PathParts for ResetPasswordPath

Source§

const PATH: &'static str = "/v1/user/password-reset"

Source§

impl PathParts for UserBrowsePath

Source§

const PATH: &'static str = "/v1/user/browse"

Source§

impl PathParts for UserColorCreatePath

Source§

const PATH: &'static str = "/v1/user/me/color"

Source§

impl PathParts for UserColorDeletePath

Source§

const PATH: &'static str = "/v1/user/me/color/{i_32}"

Source§

impl PathParts for UserColorGetPath

Source§

const PATH: &'static str = "/v1/user/me/color"

Source§

impl PathParts for UserColorUpdatePath

Source§

const PATH: &'static str = "/v1/user/me/color/{i_32}"

Source§

impl PathParts for UserDeletePath

Source§

const PATH: &'static str = "/v1/user/me"

Source§

impl PathParts for UserFontCreatePath

Source§

const PATH: &'static str = "/v1/user/me/font"

Source§

impl PathParts for UserFontDeletePath

Source§

const PATH: &'static str = "/v1/user/me/font/{i_32}"

Source§

impl PathParts for UserFontGetPath

Source§

const PATH: &'static str = "/v1/user/me/font"

Source§

impl PathParts for UserFontUpdatePath

Source§

const PATH: &'static str = "/v1/user/me/font/{i_32}"

Source§

impl PathParts for UserLookupPath

Source§

const PATH: &'static str = "/v1/user/lookup"

Source§

impl PathParts for UserSearchPath

Source§

const PATH: &'static str = "/v1/user"

Source§

impl PathParts for VerifyEmailPath

Source§

const PATH: &'static str = "/v1/user/verify-email"

Source§

impl PathParts for VerifyResetEmailPath

Source§

const PATH: &'static str = "/v1/user/verify-reset-email"

Source§

impl PathParts for RemoveResourcePath

Source§

const PATH: &'static str = "/v1/jig/{jig_id}/resources"