pub struct CreateSkillVersionResponse {
pub created_at: String,
pub description: String,
pub directory: String,
pub id: String,
pub name: String,
pub skill_id: String,
pub type: String,
pub version: String,
}Expand description
Create skill version response
Fields§
§created_at: String§description: String§directory: String§id: String§name: String§skill_id: String§type: String§version: StringTrait Implementations§
Source§impl Debug for CreateSkillVersionResponse
impl Debug for CreateSkillVersionResponse
Auto Trait Implementations§
impl Freeze for CreateSkillVersionResponse
impl RefUnwindSafe for CreateSkillVersionResponse
impl Send for CreateSkillVersionResponse
impl Sync for CreateSkillVersionResponse
impl Unpin for CreateSkillVersionResponse
impl UnsafeUnpin for CreateSkillVersionResponse
impl UnwindSafe for CreateSkillVersionResponse
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 moreCreates a shared type from an unshared type.