pub struct ModelInfo {
pub id: String,
pub object: String,
pub created: u64,
pub owned_by: String,
pub permission: Vec<ModelPermission>,
}
Expand description
模型信息
Model information
Fields§
§id: String
§object: String
§created: u64
§owned_by: String
§permission: Vec<ModelPermission>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ModelInfo
impl RefUnwindSafe for ModelInfo
impl Send for ModelInfo
impl Sync for ModelInfo
impl Unpin for ModelInfo
impl UnwindSafe for ModelInfo
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