Skip to main content

TreeOutcome

Struct TreeOutcome 

Source
pub struct TreeOutcome {
    pub removed: u64,
    pub bytes: u64,
    pub entries: Vec<String>,
    pub truncated: bool,
    pub failures: Vec<String>,
}
Expand description

한 번의 트리 연산 결과.

removed/bytesfailures가 비어 있을 때만 정확하다. 비어 있지 않으면 두 방향으로 어긋난다: 열거나 stat에 실패한 항목은 이름도 크기도 몰라 아예 세지 못했으므로 removed/bytes는 하한이고, 제거에 실패한 항목은 세어진 뒤에 실패했으므로 removed는 “지워진 개수“가 아니라 “세어서 시도한 개수“다. 어느 쪽이든 failures가 비어 있는지부터 봐야 한다.

entrieslimit까지만 담고 넘치면 truncated가 선다 — 릴레이 본문 상한이 8 MiB이고, 이 응답의 목적은 “얼마나 큰 일인가“를 알리는 것이지 목록을 완전히 나르는 것이 아니다.

Fields§

§removed: u64§bytes: u64§entries: Vec<String>§truncated: bool§failures: Vec<String>

제거에 실패한 항목. 비어 있지 않으면 호출자가 부분 실패로 보고한다.

Trait Implementations§

Source§

impl Debug for TreeOutcome

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for TreeOutcome

Source§

fn default() -> TreeOutcome

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more