pub struct ProjectListRes {
pub project_id: String,
pub items: Vec<ProjectItem>,
pub lists: Vec<ProjectList>,
}
Fields§
§project_id: String
§items: Vec<ProjectItem>
§lists: Vec<ProjectList>
Trait Implementations§
Source§impl Debug for ProjectListRes
impl Debug for ProjectListRes
Source§impl<'de> Deserialize<'de> for ProjectListRes
impl<'de> Deserialize<'de> for ProjectListRes
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 From<ProjectListRes> for Response
impl From<ProjectListRes> for Response
Source§fn from(original: ProjectListRes) -> Response
fn from(original: ProjectListRes) -> Response
Converts to this type from the input type.
Source§impl ResponseType for ProjectListRes
impl ResponseType for ProjectListRes
fn protocol_version(&self) -> ProtocolVersion
Auto Trait Implementations§
impl Freeze for ProjectListRes
impl RefUnwindSafe for ProjectListRes
impl Send for ProjectListRes
impl Sync for ProjectListRes
impl Unpin for ProjectListRes
impl UnwindSafe for ProjectListRes
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