pub struct RenameGroupFileParams {
pub group_id: i64,
pub file_id: String,
pub parent_folder_id: String,
pub new_file_name: String,
}Expand description
重命名群文件的请求参数。
Fields§
§group_id: i64文件所属群组的群号。
file_id: String要重命名的文件的ID。
parent_folder_id: String文件所在的文件夹 ID
new_file_name: String文件的新名称。
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RenameGroupFileParams
impl RefUnwindSafe for RenameGroupFileParams
impl Send for RenameGroupFileParams
impl Sync for RenameGroupFileParams
impl Unpin for RenameGroupFileParams
impl UnsafeUnpin for RenameGroupFileParams
impl UnwindSafe for RenameGroupFileParams
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