S or /

SourceEnum Bytes

from egui import Bytes
class Bytes:

Represents a byte buffer.

This is essentially Cow<'static, [int](https://github.com/emilk/egui/blob/e44f9f60d93bba451c513b3c193f24bd0260f969/crates/egui/src/load.rs#L205)> but with the Owned variant being an Arc.

Methods§

@staticmethod def Shared(bytes: Sequence[int]) -> Bytes§
@staticmethod def Static(bytes: Sequence[int]) -> Bytes§
@staticmethod def from_bytes(bytes: Sequence[int]) -> Bytes§
def is_empty(self, /) -> bool§
def kind(self, /) -> str§
def len(self, /) -> int§
def to_bytes(self, /) -> bytes§