pub struct OssObjVo {
pub id: String,
pub path: String,
pub hash: String,
pub size: String,
pub url: String,
pub is_completed: bool,
pub creator_id: String,
pub create_timestamp: String,
pub updator_id: String,
pub update_timestamp: String,
}Fields§
§id: StringID
path: String文件路径
hash: String文件Hash
size: String文件大小
url: String访问URL地址
is_completed: bool是否完成
creator_id: String创建者ID
create_timestamp: String创建时间戳
updator_id: String更新者ID
update_timestamp: String更新时间戳
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OssObjVo
impl RefUnwindSafe for OssObjVo
impl Send for OssObjVo
impl Sync for OssObjVo
impl Unpin for OssObjVo
impl UnwindSafe for OssObjVo
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