pub struct ApplyProgramResponse {
pub applied: bool,
pub program_id: String,
pub todos: Vec<Todo>,
}Expand description
ApplyProgramResponse model.
Fields§
§applied: bool§program_id: String§todos: Vec<Todo>Trait Implementations§
Source§impl Clone for ApplyProgramResponse
impl Clone for ApplyProgramResponse
Source§impl Debug for ApplyProgramResponse
impl Debug for ApplyProgramResponse
Source§impl Default for ApplyProgramResponse
impl Default for ApplyProgramResponse
Source§impl<'de> Deserialize<'de> for ApplyProgramResponse
impl<'de> Deserialize<'de> for ApplyProgramResponse
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 ApplyProgramResponse
impl PartialEq for ApplyProgramResponse
Source§impl Serialize for ApplyProgramResponse
impl Serialize for ApplyProgramResponse
impl StructuralPartialEq for ApplyProgramResponse
Auto Trait Implementations§
impl Freeze for ApplyProgramResponse
impl RefUnwindSafe for ApplyProgramResponse
impl Send for ApplyProgramResponse
impl Sync for ApplyProgramResponse
impl Unpin for ApplyProgramResponse
impl UnsafeUnpin for ApplyProgramResponse
impl UnwindSafe for ApplyProgramResponse
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