pub struct FriendSelector { /* private fields */ }
Expand description

好友选择器。

Examples

await client.friend(12345678).poke()

Python

class FriendSelector:
    @property
    def uin(self) -> int: ...

Implementations§

得到好友对象。

参考 Friend

Python
async def hydrate(self) -> Friend | None: ...

好友戳一戳。

Python
async def poke(self) -> None: ...

发送私聊消息。

Examples
await client.friend(123456789).send(["Hello, world!"])
Python
@overload
async def send(self, *segments: str | Element) -> MessageReceipt: ...
@overload
async def send(self, content: MessageContent, /) -> MessageReceipt: ...

撤回消息。

Python
async def recall(self, receipt: MessageReceipt) -> None: ...

Trait Implementations§

Performs the conversion.
Whether the pyclass is frozen. Read more
Class doc string
#[pyclass(subclass)]
#[pyclass(extends=…)]
#[pyclass(mapping)]
#[pyclass(sequence)]
Layout
Base class
This handles following two situations: Read more
Immutable or mutable
Specify this class has #[pyclass(dict)] or not.
Specify this class has #[pyclass(weakref)] or not.
The closest native ancestor. This is PyAny by default, and when you declare #[pyclass(extends=PyDict)], it’s PyDict.
Utility type to make Py::as_ref work.
Class name.
Module name, if any.
Returns the PyTypeObject instance for this type.
Returns the safe abstraction over the type object.
Checks if object is an instance of this type or a subclass of this type.
Checks if object is an instance of this type.

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.

The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
Arguments for exception
Should always be Self
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