pub struct GetQuestionConfigsResponse {
pub status: ApiStatus,
pub question_configs: Vec<QuestionConfig>,
}Fields§
§status: ApiStatus§question_configs: Vec<QuestionConfig>Implementations§
Source§impl GetQuestionConfigsResponse
impl GetQuestionConfigsResponse
pub fn new( status: ApiStatus, question_configs: Vec<QuestionConfig>, ) -> GetQuestionConfigsResponse
Trait Implementations§
Source§impl Clone for GetQuestionConfigsResponse
impl Clone for GetQuestionConfigsResponse
Source§fn clone(&self) -> GetQuestionConfigsResponse
fn clone(&self) -> GetQuestionConfigsResponse
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 GetQuestionConfigsResponse
impl Debug for GetQuestionConfigsResponse
Source§impl Default for GetQuestionConfigsResponse
impl Default for GetQuestionConfigsResponse
Source§fn default() -> GetQuestionConfigsResponse
fn default() -> GetQuestionConfigsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetQuestionConfigsResponse
impl<'de> Deserialize<'de> for GetQuestionConfigsResponse
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 GetQuestionConfigsResponse
Auto Trait Implementations§
impl Freeze for GetQuestionConfigsResponse
impl RefUnwindSafe for GetQuestionConfigsResponse
impl Send for GetQuestionConfigsResponse
impl Sync for GetQuestionConfigsResponse
impl Unpin for GetQuestionConfigsResponse
impl UnwindSafe for GetQuestionConfigsResponse
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