Struct vrchatapi::models::group_gallery_image::GroupGalleryImage
source · pub struct GroupGalleryImage {
pub id: Option<String>,
pub group_id: Option<String>,
pub gallery_id: Option<String>,
pub file_id: Option<String>,
pub image_url: Option<String>,
pub created_at: Option<String>,
pub submitted_by_user_id: Option<String>,
pub approved: Option<bool>,
pub approved_by_user_id: Option<String>,
pub approved_at: Option<String>,
}Fields§
§id: Option<String>§group_id: Option<String>§gallery_id: Option<String>§file_id: Option<String>§image_url: Option<String>§created_at: Option<String>§submitted_by_user_id: Option<String>A users unique ID, usually in the form of usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469. Legacy players can have old IDs in the form of 8JoV9XEdpo. The ID can never be changed.
approved: Option<bool>§approved_by_user_id: Option<String>A users unique ID, usually in the form of usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469. Legacy players can have old IDs in the form of 8JoV9XEdpo. The ID can never be changed.
approved_at: Option<String>Implementations§
source§impl GroupGalleryImage
impl GroupGalleryImage
pub fn new() -> GroupGalleryImage
Trait Implementations§
source§impl Clone for GroupGalleryImage
impl Clone for GroupGalleryImage
source§fn clone(&self) -> GroupGalleryImage
fn clone(&self) -> GroupGalleryImage
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 GroupGalleryImage
impl Debug for GroupGalleryImage
source§impl Default for GroupGalleryImage
impl Default for GroupGalleryImage
source§fn default() -> GroupGalleryImage
fn default() -> GroupGalleryImage
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GroupGalleryImage
impl<'de> Deserialize<'de> for GroupGalleryImage
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 PartialEq for GroupGalleryImage
impl PartialEq for GroupGalleryImage
source§fn eq(&self, other: &GroupGalleryImage) -> bool
fn eq(&self, other: &GroupGalleryImage) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for GroupGalleryImage
impl Serialize for GroupGalleryImage
impl StructuralPartialEq for GroupGalleryImage
Auto Trait Implementations§
impl RefUnwindSafe for GroupGalleryImage
impl Send for GroupGalleryImage
impl Sync for GroupGalleryImage
impl Unpin for GroupGalleryImage
impl UnwindSafe for GroupGalleryImage
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