pub struct ModelUserData {
    pub user_id: i32,
    pub data_id: i32,
    pub filename: String,
    pub data_type: String,
    pub size_in_bytes: i64,
    pub comments: String,
    pub encoding: String,
    pub sloc: String,
    pub created_at: String,
    pub updated_at: String,
    pub msg: String,
}
Expand description

ModelUserData

Representation in the db for a user’s s3-uploaded file

Each user can store many users_data record(s)

DB table

users_data

Arguments

  • user_id - i32 - user id in the db
  • data_id - i32 - users_data.id in the db
  • filename - String - data filename
  • data_type - String - v2 - data type for restricting upload types
  • size_in_bytes - i64 - size of the uploaded file
  • comments - String - HTTP header can add comments to the file
  • encoding - String - file encoding
  • sloc - String - full s3 location path
  • created_at - String - original upload time
  • updated_at - String - most recent update time
  • msg - String - message for helping debug from the client

Fields

user_id: i32data_id: i32filename: Stringdata_type: Stringsize_in_bytes: i64comments: Stringencoding: Stringsloc: Stringcreated_at: Stringupdated_at: Stringmsg: String

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more