Struct lemmy_api_common::post::ListPostLikes
source · 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 copy 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
Auto Trait Implementations§
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