pub struct AiCharacterGroup {
pub kind: String,
pub characters: Vec<AiCharacter>,
pub raw: Value,
}Expand description
一组 AI 音色(按类型分组;get_ai_characters 的顶层数组元素)。
Wire 元素:{type, characters:[AiCharacter]}。
Fields§
§kind: String§characters: Vec<AiCharacter>§raw: ValueTrait Implementations§
Source§impl Clone for AiCharacterGroup
impl Clone for AiCharacterGroup
Source§fn clone(&self) -> AiCharacterGroup
fn clone(&self) -> AiCharacterGroup
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AiCharacterGroup
impl RefUnwindSafe for AiCharacterGroup
impl Send for AiCharacterGroup
impl Sync for AiCharacterGroup
impl Unpin for AiCharacterGroup
impl UnsafeUnpin for AiCharacterGroup
impl UnwindSafe for AiCharacterGroup
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