Struct database::library::InsertableLibrary
source · pub struct InsertableLibrary {
pub name: String,
pub locations: Vec<String>,
pub media_type: MediaType,
}
Expand description
InsertableLibrary struct, same as Library
but without the id field.
Fields§
§name: String
§locations: Vec<String>
§media_type: MediaType
Implementations§
source§impl InsertableLibrary
impl InsertableLibrary
sourcepub async fn insert(
&self,
conn: &mut Transaction<'_>
) -> Result<i64, DatabaseError>
pub async fn insert(
&self,
conn: &mut Transaction<'_>
) -> Result<i64, DatabaseError>
Method inserts a InsertableLibrary object into the database (makes a new library).
Arguments
conn
- mutable reference to a sqlx transaction.
Trait Implementations§
source§impl Clone for InsertableLibrary
impl Clone for InsertableLibrary
source§fn clone(&self) -> InsertableLibrary
fn clone(&self) -> InsertableLibrary
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<'de> Deserialize<'de> for InsertableLibrary
impl<'de> Deserialize<'de> for InsertableLibrary
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