pub struct ListPostLikes {
pub post_id: PostId,
pub page: Option<i64>,
pub limit: Option<i64>,
}Expand description
List post likes. Admins-only.
Fields§
§post_id: PostId§page: Option<i64>§limit: Option<i64>Trait Implementations§
Source§impl Clone for ListPostLikes
impl Clone for ListPostLikes
Source§fn clone(&self) -> ListPostLikes
fn clone(&self) -> ListPostLikes
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 ListPostLikes
impl Debug for ListPostLikes
Source§impl Default for ListPostLikes
impl Default for ListPostLikes
Source§fn default() -> ListPostLikes
fn default() -> ListPostLikes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListPostLikes
impl<'de> Deserialize<'de> for ListPostLikes
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 Hash for ListPostLikes
impl Hash for ListPostLikes
Source§impl PartialEq for ListPostLikes
impl PartialEq for ListPostLikes
Source§impl Serialize for ListPostLikes
impl Serialize for ListPostLikes
impl Copy for ListPostLikes
impl Eq for ListPostLikes
impl StructuralPartialEq for ListPostLikes
Auto Trait Implementations§
impl Freeze for ListPostLikes
impl RefUnwindSafe for ListPostLikes
impl Send for ListPostLikes
impl Sync for ListPostLikes
impl Unpin for ListPostLikes
impl UnwindSafe for ListPostLikes
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