[][src]Struct rust_apple_photos::types::Album

pub struct Album {
    pub model_id: i32,
    pub uuid: String,
    pub album_type: i32,
    pub album_subclass: i32,
    pub name: String,
    pub folder_uuid: String,
    pub query_folder_uuid: String,
    pub poster_version_uuid: String,
    pub selected_track_path_uuid: String,
    pub sort_key_path: String,
    pub sort_ascending: i32,
    pub custom_sort_available: i32,
    pub create_date: f64,
    pub is_favorite: i32,
    pub is_in_trash: i32,
    pub in_trash_date: f64,
    pub is_hidden: i32,
    pub is_magic: i32,
    pub color_label_index: i32,
    pub face_sort_key_path: String,
    pub recent_user_change_date: f64,
    pub filter_data: Vec<u8>,
    pub query_data: Vec<u8>,
    pub is_pinned: i32,
    pub cloud_library_state: i32,
    pub has_been_synced: i32,
    pub cloud_identifier: String,
    pub is_cloud_quarantined: i32,
    pub project_extension_identifier: String,
    pub project_document_type: String,
    pub project_extension_rendered_preview_uuid: String,
}

Fields

model_id: i32uuid: Stringalbum_type: i32album_subclass: i32name: Stringfolder_uuid: Stringquery_folder_uuid: Stringposter_version_uuid: Stringselected_track_path_uuid: Stringsort_key_path: Stringsort_ascending: i32custom_sort_available: i32create_date: f64is_favorite: i32is_in_trash: i32in_trash_date: f64is_hidden: i32is_magic: i32color_label_index: i32face_sort_key_path: Stringrecent_user_change_date: f64filter_data: Vec<u8>query_data: Vec<u8>is_pinned: i32cloud_library_state: i32has_been_synced: i32cloud_identifier: Stringis_cloud_quarantined: i32project_extension_identifier: Stringproject_document_type: Stringproject_extension_rendered_preview_uuid: String

Methods

impl Album[src]

pub fn new(
    model_id: i32,
    uuid: String,
    album_type: i32,
    album_subclass: i32,
    name: String,
    folder_uuid: String,
    query_folder_uuid: String,
    poster_version_uuid: String,
    selected_track_path_uuid: String,
    sort_key_path: String,
    sort_ascending: i32,
    custom_sort_available: i32,
    create_date: f64,
    is_favorite: i32,
    is_in_trash: i32,
    in_trash_date: f64,
    is_hidden: i32,
    is_magic: i32,
    color_label_index: i32,
    face_sort_key_path: String,
    recent_user_change_date: f64,
    filter_data: Vec<u8>,
    query_data: Vec<u8>,
    is_pinned: i32,
    cloud_library_state: i32,
    has_been_synced: i32,
    cloud_identifier: String,
    is_cloud_quarantined: i32,
    project_extension_identifier: String,
    project_document_type: String,
    project_extension_rendered_preview_uuid: String
) -> Album
[src]

pub fn from(row: &Row) -> Result<Album>[src]

Trait Implementations

impl Debug for Album[src]

Auto Trait Implementations

impl Send for Album

impl Sync for Album

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]