pub struct AddStore2Block<'a, 'b> { /* private fields */ }

Implementations§

Examples found in repository?
src/cmd.rs (line 170)
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
    pub fn new_store<S: Into<Cow<'a, str>>>(
        &mut self,
        block: S,
        name: S,
    ) -> Result<AddStore2Block<'a, '_>, Error> {
        let name = name.into();

        if self.find_store(name.clone()).is_some() {
            Err(Error::DuplicatedStoreName(name.to_string()))
        } else {
            let block = block.into();
            let block = self
                .blocks
                .iter_mut()
                .find(|v| v.name() == block)
                .ok_or_else(|| Error::InvalidBlockName(block.to_string()))?;
            let stores = &mut self.stores;

            Ok(AddStore2Block::new(block, stores, name))
        }
    }

    pub fn new_block<S: Into<Cow<'a, str>>>(&mut self, name: S) -> Result<BlockMut<'a, '_>, Error> {
        let name = name.into();

        if self.find_block(name.clone()).is_some() {
            Err(Error::DuplicatedBlockName(name.to_string()))
        } else {
            Ok(BlockMut::new(self, name))
        }
    }
}

impl<'a> Deref for Command<'a> {
    type Target = Vec<Store<'a>>;

    fn deref(&self) -> &Self::Target {
        &self.stores
    }
}

impl<'a> DerefMut for Command<'a> {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.stores
    }
}

impl<'b> HelpDisplay for Command<'b> {
    fn gen_help<'a, P>(&self, policy: &P) -> Option<Cow<'a, str>>
    where
        Self: 'a,
        P: HelpPolicy<'a, Self>,
    {
        policy.format(self)
    }
}

pub struct AddStore2Block<'a, 'b> {
    store: Store<'a>,

    block: &'b mut Block<'a, Cow<'a, str>>,

    stores: &'b mut Vec<Store<'a>>,

    added: bool,
}

impl<'a, 'b> AddStore2Block<'a, 'b> {
    pub fn new<S: Into<Cow<'a, str>>>(
        block: &'b mut Block<'a, Cow<'a, str>>,
        stores: &'b mut Vec<Store<'a>>,
        name: S,
    ) -> Self {
        let mut store = Store::default();

        store.set_optional(true);
        store.set_name(name);
        Self {
            block,
            store,
            stores,
            added: false,
        }
    }

    pub fn set_optional(&mut self, optional: bool) -> &mut Self {
        self.store.set_optional(optional);
        self
    }

    pub fn set_position(&mut self, position: bool) -> &mut Self {
        self.store.set_position(position);
        self
    }

    pub fn set_hint<S: Into<Cow<'a, str>>>(&mut self, hint: S) -> &mut Self {
        self.store.set_hint(hint);
        self
    }

    pub fn set_help<S: Into<Cow<'a, str>>>(&mut self, help: S) -> &mut Self {
        self.store.set_help(help);
        self
    }

    pub fn set_name<S: Into<Cow<'a, str>>>(&mut self, name: S) -> &mut Self {
        self.store.set_name(name);
        self
    }

    pub fn set_type<S: Into<Cow<'a, str>>>(&mut self, type_name: S) -> &mut Self {
        self.store.set_type(type_name);
        self
    }

    pub fn submit(mut self) {
        if !self.added {
            let store = std::mem::take(&mut self.store);

            self.block.attach(store.name());
            self.stores.push(store);
            self.added = true;
        }
    }
}

impl<'a, 'b> Drop for AddStore2Block<'a, 'b> {
    fn drop(&mut self) {
        if !self.added {
            let store = std::mem::take(&mut self.store);

            self.block.attach(store.name());
            self.stores.push(store);
            self.added = true;
        }
    }
}

pub struct BlockMut<'a, 'b> {
    block: Block<'a, Cow<'a, str>>,

    cmd: &'b mut Command<'a>,

    added: bool,
}

impl<'a, 'b> BlockMut<'a, 'b> {
    pub fn new<S: Into<Cow<'a, str>>>(cmd: &'b mut Command<'a>, name: S) -> Self {
        let mut opt = Block::default();

        opt.set_name(name);
        Self {
            cmd,
            block: opt,
            added: false,
        }
    }

    pub fn attach<S: Into<Cow<'a, str>>>(&mut self, name: S) -> Result<&mut Self, Error> {
        let name = name.into();

        if self.cmd.find_store(name.clone()).is_none() {
            Err(Error::InvalidStoreName(name.to_string()))
        } else if self.block.iter().any(|v| v == &name) {
            Err(Error::DuplicatedStoreName(name.to_string()))
        } else {
            self.block.attach(name);
            Ok(self)
        }
    }

    pub fn set_hint<S: Into<Cow<'a, str>>>(&mut self, hint: S) -> &mut Self {
        self.block.set_hint(hint);
        self
    }

    pub fn set_help<S: Into<Cow<'a, str>>>(&mut self, help: S) -> &mut Self {
        self.block.set_help(help);
        self
    }

    pub fn set_foot<S: Into<Cow<'a, str>>>(&mut self, footer: S) -> &mut Self {
        self.block.set_foot(footer);
        self
    }

    pub fn set_head<S: Into<Cow<'a, str>>>(&mut self, header: S) -> &mut Self {
        self.block.set_head(header);
        self
    }

    pub fn set_name<S: Into<Cow<'a, str>>>(&mut self, name: S) -> &mut Self {
        self.block.set_name(name);
        self
    }

    pub fn new_store<S: Into<Cow<'a, str>>>(&mut self, store: S) -> AddStore2Block<'a, '_> {
        let block = &mut self.block;
        let stores = &mut self.cmd.stores;

        AddStore2Block::new(block, stores, store)
    }

Trait Implementations§

Executes the destructor for this type. Read more

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.

Calls U::from(self).

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

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.