pub struct TeamDoesNotExistResponse {
pub error: String,
pub exception_id: Option<Box<ExceptionId>>,
pub message: String,
pub team_name: String,
pub team_slug: String,
}Expand description
TeamDoesNotExistResponse : Action: Attempt to reference a team with team_slug. Error: A team with team_slug does not exist.
Fields§
§error: String§exception_id: Option<Box<ExceptionId>>§message: String§team_name: String§team_slug: StringImplementations§
Trait Implementations§
Source§impl Clone for TeamDoesNotExistResponse
impl Clone for TeamDoesNotExistResponse
Source§fn clone(&self) -> TeamDoesNotExistResponse
fn clone(&self) -> TeamDoesNotExistResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TeamDoesNotExistResponse
impl Debug for TeamDoesNotExistResponse
Source§impl Default for TeamDoesNotExistResponse
impl Default for TeamDoesNotExistResponse
Source§fn default() -> TeamDoesNotExistResponse
fn default() -> TeamDoesNotExistResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TeamDoesNotExistResponse
impl<'de> Deserialize<'de> for TeamDoesNotExistResponse
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 TeamDoesNotExistResponse
impl PartialEq for TeamDoesNotExistResponse
Source§impl Serialize for TeamDoesNotExistResponse
impl Serialize for TeamDoesNotExistResponse
impl StructuralPartialEq for TeamDoesNotExistResponse
Auto Trait Implementations§
impl Freeze for TeamDoesNotExistResponse
impl RefUnwindSafe for TeamDoesNotExistResponse
impl Send for TeamDoesNotExistResponse
impl Sync for TeamDoesNotExistResponse
impl Unpin for TeamDoesNotExistResponse
impl UnwindSafe for TeamDoesNotExistResponse
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