pub struct ProjectDoesNotExistResponse {
pub error: String,
pub exception_id: Option<Box<ExceptionId>>,
pub message: String,
pub project_id: String,
}Expand description
ProjectDoesNotExistResponse : Action: Attempt to fetch a project with project_id. Error: A project matching project_id does not exist for the team.
Fields§
§error: String§exception_id: Option<Box<ExceptionId>>§message: String§project_id: StringImplementations§
Trait Implementations§
Source§impl Clone for ProjectDoesNotExistResponse
impl Clone for ProjectDoesNotExistResponse
Source§fn clone(&self) -> ProjectDoesNotExistResponse
fn clone(&self) -> ProjectDoesNotExistResponse
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 ProjectDoesNotExistResponse
impl Debug for ProjectDoesNotExistResponse
Source§impl Default for ProjectDoesNotExistResponse
impl Default for ProjectDoesNotExistResponse
Source§fn default() -> ProjectDoesNotExistResponse
fn default() -> ProjectDoesNotExistResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectDoesNotExistResponse
impl<'de> Deserialize<'de> for ProjectDoesNotExistResponse
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
impl StructuralPartialEq for ProjectDoesNotExistResponse
Auto Trait Implementations§
impl Freeze for ProjectDoesNotExistResponse
impl RefUnwindSafe for ProjectDoesNotExistResponse
impl Send for ProjectDoesNotExistResponse
impl Sync for ProjectDoesNotExistResponse
impl Unpin for ProjectDoesNotExistResponse
impl UnwindSafe for ProjectDoesNotExistResponse
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