Home
last modified time | relevance | path

Searched defs:Child (Results 1 – 2 of 2) sorted by relevance

/linux/samples/rust/
H A Drust_configfs.rs72 type Child = Child; typedef
74 fn make_group(&self, name: &CStr) -> Result<impl PinInit<configfs::Group<Child>, Error>> { in make_group()
127 struct Child {} struct
129 impl Child { impl
136 impl configfs::GroupOperations for Child { implementation
137 type Child = GrandChild; typedef
161 impl configfs::AttributeOperations<0> for Child { implementation
164 fn show(_container: &Child, page: &mut [u8; PAGE_SIZE]) -> Result<usize> { in show()
/linux/rust/kernel/
H A Dconfigfs.rs492 type Child: 'static; typedef
502 fn make_group(&self, name: &CStr) -> Result<impl PinInit<Group<Self::Child>, Error>>; in make_group()
514 fn drop_item(&self, _child: ArcBorrow<'_, Group<Self::Child>>) { in drop_item()