pub struct TipsResponse {
pub tips: Vec<String>,
}
Expand description
Response of GET /api/core/v2/tips. Returns non-lazy tips.
Fields§
§tips: Vec<String>
Trait Implementations§
Source§impl Clone for TipsResponse
impl Clone for TipsResponse
Source§fn clone(&self) -> TipsResponse
fn clone(&self) -> TipsResponse
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 TipsResponse
impl Debug for TipsResponse
Source§impl<'de> Deserialize<'de> for TipsResponse
impl<'de> Deserialize<'de> for TipsResponse
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 IntoResponse for TipsResponse
impl IntoResponse for TipsResponse
Source§fn into_response(self) -> Response<BoxBody>
fn into_response(self) -> Response<BoxBody>
Create a response.
Source§impl PartialEq for TipsResponse
impl PartialEq for TipsResponse
Source§impl Serialize for TipsResponse
impl Serialize for TipsResponse
impl Eq for TipsResponse
impl StructuralPartialEq for TipsResponse
Auto Trait Implementations§
impl Freeze for TipsResponse
impl RefUnwindSafe for TipsResponse
impl Send for TipsResponse
impl Sync for TipsResponse
impl Unpin for TipsResponse
impl UnwindSafe for TipsResponse
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