pub struct QueryContent {
pub user_id: u64,
pub multiplayer_id: String,
pub content_type: i32,
pub game_id: Vec<String>,
}Fields§
§user_id: u64§multiplayer_id: String§content_type: i32§game_id: Vec<String>Trait Implementations§
Source§impl Debug for QueryContent
impl Debug for QueryContent
Source§impl<'de> Deserialize<'de> for QueryContent
impl<'de> Deserialize<'de> for QueryContent
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<QueryContent> for RequestBody
impl From<QueryContent> for RequestBody
Source§fn from(val: QueryContent) -> Self
fn from(val: QueryContent) -> Self
Converts to this type from the input type.
Source§impl RequestResponse for QueryContent
impl RequestResponse for QueryContent
type Response = QueryContentResponse
fn extract_response(body: ResponseBody) -> Result<Self::Response, SdkError>
Auto Trait Implementations§
impl Freeze for QueryContent
impl RefUnwindSafe for QueryContent
impl Send for QueryContent
impl Sync for QueryContent
impl Unpin for QueryContent
impl UnwindSafe for QueryContent
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