aya-ebpf.txt 247 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739
  1. pub mod aya_ebpf
  2. pub use aya_ebpf::bindings
  3. pub use aya_ebpf::cty
  4. pub use aya_ebpf::macros
  5. pub mod aya_ebpf::helpers
  6. pub use aya_ebpf::helpers::gen
  7. pub macro aya_ebpf::helpers::bpf_printk!
  8. #[repr(transparent)] pub struct aya_ebpf::helpers::PrintkArg(_)
  9. impl aya_ebpf::helpers::PrintkArg
  10. pub fn aya_ebpf::helpers::PrintkArg::from_raw(x: u64) -> Self
  11. impl core::clone::Clone for aya_ebpf::helpers::PrintkArg
  12. pub fn aya_ebpf::helpers::PrintkArg::clone(&self) -> aya_ebpf::helpers::PrintkArg
  13. impl core::convert::From<char> for aya_ebpf::helpers::PrintkArg
  14. pub fn aya_ebpf::helpers::PrintkArg::from(x: char) -> aya_ebpf::helpers::PrintkArg
  15. impl core::convert::From<i16> for aya_ebpf::helpers::PrintkArg
  16. pub fn aya_ebpf::helpers::PrintkArg::from(x: i16) -> aya_ebpf::helpers::PrintkArg
  17. impl core::convert::From<i32> for aya_ebpf::helpers::PrintkArg
  18. pub fn aya_ebpf::helpers::PrintkArg::from(x: i32) -> aya_ebpf::helpers::PrintkArg
  19. impl core::convert::From<i64> for aya_ebpf::helpers::PrintkArg
  20. pub fn aya_ebpf::helpers::PrintkArg::from(x: i64) -> aya_ebpf::helpers::PrintkArg
  21. impl core::convert::From<i8> for aya_ebpf::helpers::PrintkArg
  22. pub fn aya_ebpf::helpers::PrintkArg::from(x: i8) -> aya_ebpf::helpers::PrintkArg
  23. impl core::convert::From<isize> for aya_ebpf::helpers::PrintkArg
  24. pub fn aya_ebpf::helpers::PrintkArg::from(x: isize) -> aya_ebpf::helpers::PrintkArg
  25. impl core::convert::From<u16> for aya_ebpf::helpers::PrintkArg
  26. pub fn aya_ebpf::helpers::PrintkArg::from(x: u16) -> aya_ebpf::helpers::PrintkArg
  27. impl core::convert::From<u32> for aya_ebpf::helpers::PrintkArg
  28. pub fn aya_ebpf::helpers::PrintkArg::from(x: u32) -> aya_ebpf::helpers::PrintkArg
  29. impl core::convert::From<u64> for aya_ebpf::helpers::PrintkArg
  30. pub fn aya_ebpf::helpers::PrintkArg::from(x: u64) -> aya_ebpf::helpers::PrintkArg
  31. impl core::convert::From<u8> for aya_ebpf::helpers::PrintkArg
  32. pub fn aya_ebpf::helpers::PrintkArg::from(x: u8) -> aya_ebpf::helpers::PrintkArg
  33. impl core::convert::From<usize> for aya_ebpf::helpers::PrintkArg
  34. pub fn aya_ebpf::helpers::PrintkArg::from(x: usize) -> aya_ebpf::helpers::PrintkArg
  35. impl core::marker::Copy for aya_ebpf::helpers::PrintkArg
  36. impl<T> core::convert::From<*const T> for aya_ebpf::helpers::PrintkArg
  37. pub fn aya_ebpf::helpers::PrintkArg::from(x: *const T) -> Self
  38. impl<T> core::convert::From<*mut T> for aya_ebpf::helpers::PrintkArg
  39. pub fn aya_ebpf::helpers::PrintkArg::from(x: *mut T) -> Self
  40. impl core::marker::Freeze for aya_ebpf::helpers::PrintkArg
  41. impl core::marker::Send for aya_ebpf::helpers::PrintkArg
  42. impl core::marker::Sync for aya_ebpf::helpers::PrintkArg
  43. impl core::marker::Unpin for aya_ebpf::helpers::PrintkArg
  44. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::helpers::PrintkArg
  45. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::helpers::PrintkArg
  46. impl<T, U> core::convert::Into<U> for aya_ebpf::helpers::PrintkArg where U: core::convert::From<T>
  47. pub fn aya_ebpf::helpers::PrintkArg::into(self) -> U
  48. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::helpers::PrintkArg where U: core::convert::Into<T>
  49. pub type aya_ebpf::helpers::PrintkArg::Error = core::convert::Infallible
  50. pub fn aya_ebpf::helpers::PrintkArg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  51. impl<T, U> core::convert::TryInto<U> for aya_ebpf::helpers::PrintkArg where U: core::convert::TryFrom<T>
  52. pub type aya_ebpf::helpers::PrintkArg::Error = <U as core::convert::TryFrom<T>>::Error
  53. pub fn aya_ebpf::helpers::PrintkArg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  54. impl<T> core::any::Any for aya_ebpf::helpers::PrintkArg where T: 'static + core::marker::Sized
  55. pub fn aya_ebpf::helpers::PrintkArg::type_id(&self) -> core::any::TypeId
  56. impl<T> core::borrow::Borrow<T> for aya_ebpf::helpers::PrintkArg where T: core::marker::Sized
  57. pub fn aya_ebpf::helpers::PrintkArg::borrow(&self) -> &T
  58. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::helpers::PrintkArg where T: core::marker::Sized
  59. pub fn aya_ebpf::helpers::PrintkArg::borrow_mut(&mut self) -> &mut T
  60. impl<T> core::clone::CloneToUninit for aya_ebpf::helpers::PrintkArg where T: core::clone::Clone
  61. pub unsafe fn aya_ebpf::helpers::PrintkArg::clone_to_uninit(&self, dst: *mut T)
  62. impl<T> core::clone::CloneToUninit for aya_ebpf::helpers::PrintkArg where T: core::marker::Copy
  63. pub unsafe fn aya_ebpf::helpers::PrintkArg::clone_to_uninit(&self, dst: *mut T)
  64. impl<T> core::convert::From<T> for aya_ebpf::helpers::PrintkArg
  65. pub fn aya_ebpf::helpers::PrintkArg::from(t: T) -> T
  66. pub fn aya_ebpf::helpers::bpf_get_current_comm() -> core::result::Result<[u8; 16], aya_ebpf_cty::od::c_long>
  67. pub fn aya_ebpf::helpers::bpf_get_current_pid_tgid() -> u64
  68. pub fn aya_ebpf::helpers::bpf_get_current_uid_gid() -> u64
  69. pub unsafe fn aya_ebpf::helpers::bpf_probe_read<T>(src: *const T) -> core::result::Result<T, aya_ebpf_cty::od::c_long>
  70. pub unsafe fn aya_ebpf::helpers::bpf_probe_read_buf(src: *const u8, dst: &mut [u8]) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  71. pub unsafe fn aya_ebpf::helpers::bpf_probe_read_kernel<T>(src: *const T) -> core::result::Result<T, aya_ebpf_cty::od::c_long>
  72. pub unsafe fn aya_ebpf::helpers::bpf_probe_read_kernel_buf(src: *const u8, dst: &mut [u8]) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  73. pub unsafe fn aya_ebpf::helpers::bpf_probe_read_kernel_str(src: *const u8, dest: &mut [u8]) -> core::result::Result<usize, aya_ebpf_cty::od::c_long>
  74. pub unsafe fn aya_ebpf::helpers::bpf_probe_read_kernel_str_bytes(src: *const u8, dest: &mut [u8]) -> core::result::Result<&[u8], aya_ebpf_cty::od::c_long>
  75. pub unsafe fn aya_ebpf::helpers::bpf_probe_read_str(src: *const u8, dest: &mut [u8]) -> core::result::Result<usize, aya_ebpf_cty::od::c_long>
  76. pub unsafe fn aya_ebpf::helpers::bpf_probe_read_user<T>(src: *const T) -> core::result::Result<T, aya_ebpf_cty::od::c_long>
  77. pub unsafe fn aya_ebpf::helpers::bpf_probe_read_user_buf(src: *const u8, dst: &mut [u8]) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  78. pub unsafe fn aya_ebpf::helpers::bpf_probe_read_user_str(src: *const u8, dest: &mut [u8]) -> core::result::Result<usize, aya_ebpf_cty::od::c_long>
  79. pub unsafe fn aya_ebpf::helpers::bpf_probe_read_user_str_bytes(src: *const u8, dest: &mut [u8]) -> core::result::Result<&[u8], aya_ebpf_cty::od::c_long>
  80. pub unsafe fn aya_ebpf::helpers::bpf_probe_write_user<T>(dst: *mut T, src: *const T) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  81. pub mod aya_ebpf::maps
  82. pub mod aya_ebpf::maps::array
  83. #[repr(transparent)] pub struct aya_ebpf::maps::array::Array<T>
  84. impl<T> aya_ebpf::maps::array::Array<T>
  85. pub fn aya_ebpf::maps::array::Array<T>::get(&self, index: u32) -> core::option::Option<&T>
  86. pub fn aya_ebpf::maps::array::Array<T>::get_ptr(&self, index: u32) -> core::option::Option<*const T>
  87. pub fn aya_ebpf::maps::array::Array<T>::get_ptr_mut(&self, index: u32) -> core::option::Option<*mut T>
  88. pub const fn aya_ebpf::maps::array::Array<T>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::array::Array<T>
  89. pub const fn aya_ebpf::maps::array::Array<T>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::array::Array<T>
  90. impl<T: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::array::Array<T>
  91. impl<T> !core::marker::Freeze for aya_ebpf::maps::array::Array<T>
  92. impl<T> core::marker::Send for aya_ebpf::maps::array::Array<T> where T: core::marker::Send
  93. impl<T> core::marker::Unpin for aya_ebpf::maps::array::Array<T> where T: core::marker::Unpin
  94. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::array::Array<T>
  95. impl<T> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::array::Array<T> where T: core::panic::unwind_safe::UnwindSafe
  96. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::array::Array<T> where U: core::convert::From<T>
  97. pub fn aya_ebpf::maps::array::Array<T>::into(self) -> U
  98. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::array::Array<T> where U: core::convert::Into<T>
  99. pub type aya_ebpf::maps::array::Array<T>::Error = core::convert::Infallible
  100. pub fn aya_ebpf::maps::array::Array<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  101. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::array::Array<T> where U: core::convert::TryFrom<T>
  102. pub type aya_ebpf::maps::array::Array<T>::Error = <U as core::convert::TryFrom<T>>::Error
  103. pub fn aya_ebpf::maps::array::Array<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  104. impl<T> core::any::Any for aya_ebpf::maps::array::Array<T> where T: 'static + core::marker::Sized
  105. pub fn aya_ebpf::maps::array::Array<T>::type_id(&self) -> core::any::TypeId
  106. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::array::Array<T> where T: core::marker::Sized
  107. pub fn aya_ebpf::maps::array::Array<T>::borrow(&self) -> &T
  108. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::array::Array<T> where T: core::marker::Sized
  109. pub fn aya_ebpf::maps::array::Array<T>::borrow_mut(&mut self) -> &mut T
  110. impl<T> core::convert::From<T> for aya_ebpf::maps::array::Array<T>
  111. pub fn aya_ebpf::maps::array::Array<T>::from(t: T) -> T
  112. pub mod aya_ebpf::maps::bloom_filter
  113. #[repr(transparent)] pub struct aya_ebpf::maps::bloom_filter::BloomFilter<T>
  114. impl<T> aya_ebpf::maps::bloom_filter::BloomFilter<T>
  115. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::contains(&mut self, value: &T) -> core::result::Result<(), i64>
  116. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::insert(&mut self, value: &T, flags: u64) -> core::result::Result<(), i64>
  117. pub const fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::bloom_filter::BloomFilter<T>
  118. pub const fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::bloom_filter::BloomFilter<T>
  119. impl<T> core::marker::Freeze for aya_ebpf::maps::bloom_filter::BloomFilter<T>
  120. impl<T> core::marker::Send for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::marker::Send
  121. impl<T> core::marker::Sync for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::marker::Sync
  122. impl<T> core::marker::Unpin for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::marker::Unpin
  123. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::panic::unwind_safe::RefUnwindSafe
  124. impl<T> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::panic::unwind_safe::UnwindSafe
  125. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::bloom_filter::BloomFilter<T> where U: core::convert::From<T>
  126. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::into(self) -> U
  127. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::bloom_filter::BloomFilter<T> where U: core::convert::Into<T>
  128. pub type aya_ebpf::maps::bloom_filter::BloomFilter<T>::Error = core::convert::Infallible
  129. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  130. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::bloom_filter::BloomFilter<T> where U: core::convert::TryFrom<T>
  131. pub type aya_ebpf::maps::bloom_filter::BloomFilter<T>::Error = <U as core::convert::TryFrom<T>>::Error
  132. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  133. impl<T> core::any::Any for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: 'static + core::marker::Sized
  134. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::type_id(&self) -> core::any::TypeId
  135. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::marker::Sized
  136. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::borrow(&self) -> &T
  137. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::marker::Sized
  138. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::borrow_mut(&mut self) -> &mut T
  139. impl<T> core::convert::From<T> for aya_ebpf::maps::bloom_filter::BloomFilter<T>
  140. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::from(t: T) -> T
  141. pub mod aya_ebpf::maps::hash_map
  142. #[repr(transparent)] pub struct aya_ebpf::maps::hash_map::HashMap<K, V>
  143. impl<K, V> aya_ebpf::maps::hash_map::HashMap<K, V>
  144. pub unsafe fn aya_ebpf::maps::hash_map::HashMap<K, V>::get(&self, key: &K) -> core::option::Option<&V>
  145. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::get_ptr(&self, key: &K) -> core::option::Option<*const V>
  146. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V>
  147. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  148. pub const fn aya_ebpf::maps::hash_map::HashMap<K, V>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::HashMap<K, V>
  149. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::remove(&self, key: &K) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  150. pub const fn aya_ebpf::maps::hash_map::HashMap<K, V>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::HashMap<K, V>
  151. impl<K: core::marker::Sync, V: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::hash_map::HashMap<K, V>
  152. impl<K, V> !core::marker::Freeze for aya_ebpf::maps::hash_map::HashMap<K, V>
  153. impl<K, V> core::marker::Send for aya_ebpf::maps::hash_map::HashMap<K, V> where K: core::marker::Send, V: core::marker::Send
  154. impl<K, V> core::marker::Unpin for aya_ebpf::maps::hash_map::HashMap<K, V> where K: core::marker::Unpin, V: core::marker::Unpin
  155. impl<K, V> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::hash_map::HashMap<K, V>
  156. impl<K, V> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::hash_map::HashMap<K, V> where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  157. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::hash_map::HashMap<K, V> where U: core::convert::From<T>
  158. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::into(self) -> U
  159. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::hash_map::HashMap<K, V> where U: core::convert::Into<T>
  160. pub type aya_ebpf::maps::hash_map::HashMap<K, V>::Error = core::convert::Infallible
  161. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  162. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::hash_map::HashMap<K, V> where U: core::convert::TryFrom<T>
  163. pub type aya_ebpf::maps::hash_map::HashMap<K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  164. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  165. impl<T> core::any::Any for aya_ebpf::maps::hash_map::HashMap<K, V> where T: 'static + core::marker::Sized
  166. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::type_id(&self) -> core::any::TypeId
  167. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::hash_map::HashMap<K, V> where T: core::marker::Sized
  168. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::borrow(&self) -> &T
  169. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::hash_map::HashMap<K, V> where T: core::marker::Sized
  170. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::borrow_mut(&mut self) -> &mut T
  171. impl<T> core::convert::From<T> for aya_ebpf::maps::hash_map::HashMap<K, V>
  172. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::from(t: T) -> T
  173. #[repr(transparent)] pub struct aya_ebpf::maps::hash_map::LruHashMap<K, V>
  174. impl<K, V> aya_ebpf::maps::hash_map::LruHashMap<K, V>
  175. pub unsafe fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::get(&self, key: &K) -> core::option::Option<&V>
  176. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::get_ptr(&self, key: &K) -> core::option::Option<*const V>
  177. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V>
  178. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  179. pub const fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::LruHashMap<K, V>
  180. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::remove(&self, key: &K) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  181. pub const fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::LruHashMap<K, V>
  182. impl<K: core::marker::Sync, V: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::hash_map::LruHashMap<K, V>
  183. impl<K, V> !core::marker::Freeze for aya_ebpf::maps::hash_map::LruHashMap<K, V>
  184. impl<K, V> core::marker::Send for aya_ebpf::maps::hash_map::LruHashMap<K, V> where K: core::marker::Send, V: core::marker::Send
  185. impl<K, V> core::marker::Unpin for aya_ebpf::maps::hash_map::LruHashMap<K, V> where K: core::marker::Unpin, V: core::marker::Unpin
  186. impl<K, V> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::hash_map::LruHashMap<K, V>
  187. impl<K, V> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::hash_map::LruHashMap<K, V> where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  188. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::hash_map::LruHashMap<K, V> where U: core::convert::From<T>
  189. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::into(self) -> U
  190. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::hash_map::LruHashMap<K, V> where U: core::convert::Into<T>
  191. pub type aya_ebpf::maps::hash_map::LruHashMap<K, V>::Error = core::convert::Infallible
  192. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  193. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::hash_map::LruHashMap<K, V> where U: core::convert::TryFrom<T>
  194. pub type aya_ebpf::maps::hash_map::LruHashMap<K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  195. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  196. impl<T> core::any::Any for aya_ebpf::maps::hash_map::LruHashMap<K, V> where T: 'static + core::marker::Sized
  197. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::type_id(&self) -> core::any::TypeId
  198. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::hash_map::LruHashMap<K, V> where T: core::marker::Sized
  199. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::borrow(&self) -> &T
  200. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::hash_map::LruHashMap<K, V> where T: core::marker::Sized
  201. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::borrow_mut(&mut self) -> &mut T
  202. impl<T> core::convert::From<T> for aya_ebpf::maps::hash_map::LruHashMap<K, V>
  203. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::from(t: T) -> T
  204. #[repr(transparent)] pub struct aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  205. impl<K, V> aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  206. pub unsafe fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::get(&self, key: &K) -> core::option::Option<&V>
  207. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::get_ptr(&self, key: &K) -> core::option::Option<*const V>
  208. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V>
  209. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  210. pub const fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  211. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::remove(&self, key: &K) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  212. pub const fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  213. impl<K, V> core::marker::Sync for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  214. impl<K, V> !core::marker::Freeze for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  215. impl<K, V> core::marker::Send for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where K: core::marker::Send, V: core::marker::Send
  216. impl<K, V> core::marker::Unpin for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where K: core::marker::Unpin, V: core::marker::Unpin
  217. impl<K, V> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  218. impl<K, V> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  219. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where U: core::convert::From<T>
  220. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::into(self) -> U
  221. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where U: core::convert::Into<T>
  222. pub type aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::Error = core::convert::Infallible
  223. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  224. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where U: core::convert::TryFrom<T>
  225. pub type aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  226. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  227. impl<T> core::any::Any for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where T: 'static + core::marker::Sized
  228. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::type_id(&self) -> core::any::TypeId
  229. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where T: core::marker::Sized
  230. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::borrow(&self) -> &T
  231. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where T: core::marker::Sized
  232. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::borrow_mut(&mut self) -> &mut T
  233. impl<T> core::convert::From<T> for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  234. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::from(t: T) -> T
  235. #[repr(transparent)] pub struct aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  236. impl<K, V> aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  237. pub unsafe fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::get(&self, key: &K) -> core::option::Option<&V>
  238. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::get_ptr(&self, key: &K) -> core::option::Option<*const V>
  239. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V>
  240. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  241. pub const fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  242. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::remove(&self, key: &K) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  243. pub const fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  244. impl<K, V> core::marker::Sync for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  245. impl<K, V> !core::marker::Freeze for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  246. impl<K, V> core::marker::Send for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where K: core::marker::Send, V: core::marker::Send
  247. impl<K, V> core::marker::Unpin for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where K: core::marker::Unpin, V: core::marker::Unpin
  248. impl<K, V> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  249. impl<K, V> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  250. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where U: core::convert::From<T>
  251. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::into(self) -> U
  252. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where U: core::convert::Into<T>
  253. pub type aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::Error = core::convert::Infallible
  254. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  255. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where U: core::convert::TryFrom<T>
  256. pub type aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  257. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  258. impl<T> core::any::Any for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where T: 'static + core::marker::Sized
  259. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::type_id(&self) -> core::any::TypeId
  260. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where T: core::marker::Sized
  261. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::borrow(&self) -> &T
  262. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where T: core::marker::Sized
  263. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::borrow_mut(&mut self) -> &mut T
  264. impl<T> core::convert::From<T> for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  265. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::from(t: T) -> T
  266. pub mod aya_ebpf::maps::lpm_trie
  267. #[repr(packed)] pub struct aya_ebpf::maps::lpm_trie::Key<K>
  268. pub aya_ebpf::maps::lpm_trie::Key::data: K
  269. pub aya_ebpf::maps::lpm_trie::Key::prefix_len: u32
  270. impl<K> aya_ebpf::maps::lpm_trie::Key<K>
  271. pub fn aya_ebpf::maps::lpm_trie::Key<K>::new(prefix_len: u32, data: K) -> Self
  272. impl<K> core::marker::Freeze for aya_ebpf::maps::lpm_trie::Key<K> where K: core::marker::Freeze
  273. impl<K> core::marker::Send for aya_ebpf::maps::lpm_trie::Key<K> where K: core::marker::Send
  274. impl<K> core::marker::Sync for aya_ebpf::maps::lpm_trie::Key<K> where K: core::marker::Sync
  275. impl<K> core::marker::Unpin for aya_ebpf::maps::lpm_trie::Key<K> where K: core::marker::Unpin
  276. impl<K> core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::RefUnwindSafe
  277. impl<K> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::UnwindSafe
  278. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::lpm_trie::Key<K> where U: core::convert::From<T>
  279. pub fn aya_ebpf::maps::lpm_trie::Key<K>::into(self) -> U
  280. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::lpm_trie::Key<K> where U: core::convert::Into<T>
  281. pub type aya_ebpf::maps::lpm_trie::Key<K>::Error = core::convert::Infallible
  282. pub fn aya_ebpf::maps::lpm_trie::Key<K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  283. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::lpm_trie::Key<K> where U: core::convert::TryFrom<T>
  284. pub type aya_ebpf::maps::lpm_trie::Key<K>::Error = <U as core::convert::TryFrom<T>>::Error
  285. pub fn aya_ebpf::maps::lpm_trie::Key<K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  286. impl<T> core::any::Any for aya_ebpf::maps::lpm_trie::Key<K> where T: 'static + core::marker::Sized
  287. pub fn aya_ebpf::maps::lpm_trie::Key<K>::type_id(&self) -> core::any::TypeId
  288. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::lpm_trie::Key<K> where T: core::marker::Sized
  289. pub fn aya_ebpf::maps::lpm_trie::Key<K>::borrow(&self) -> &T
  290. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::lpm_trie::Key<K> where T: core::marker::Sized
  291. pub fn aya_ebpf::maps::lpm_trie::Key<K>::borrow_mut(&mut self) -> &mut T
  292. impl<T> core::convert::From<T> for aya_ebpf::maps::lpm_trie::Key<K>
  293. pub fn aya_ebpf::maps::lpm_trie::Key<K>::from(t: T) -> T
  294. #[repr(transparent)] pub struct aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  295. impl<K, V> aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  296. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::get(&self, key: &aya_ebpf::maps::lpm_trie::Key<K>) -> core::option::Option<&V>
  297. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::insert(&self, key: &aya_ebpf::maps::lpm_trie::Key<K>, value: &V, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  298. pub const fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  299. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::remove(&self, key: &aya_ebpf::maps::lpm_trie::Key<K>) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  300. pub const fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  301. impl<K: core::marker::Sync, V: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  302. impl<K, V> !core::marker::Freeze for aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  303. impl<K, V> core::marker::Send for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where K: core::marker::Send, V: core::marker::Send
  304. impl<K, V> core::marker::Unpin for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where K: core::marker::Unpin, V: core::marker::Unpin
  305. impl<K, V> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  306. impl<K, V> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  307. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where U: core::convert::From<T>
  308. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::into(self) -> U
  309. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where U: core::convert::Into<T>
  310. pub type aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::Error = core::convert::Infallible
  311. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  312. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where U: core::convert::TryFrom<T>
  313. pub type aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  314. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  315. impl<T> core::any::Any for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where T: 'static + core::marker::Sized
  316. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::type_id(&self) -> core::any::TypeId
  317. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where T: core::marker::Sized
  318. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::borrow(&self) -> &T
  319. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where T: core::marker::Sized
  320. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::borrow_mut(&mut self) -> &mut T
  321. impl<T> core::convert::From<T> for aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  322. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::from(t: T) -> T
  323. pub mod aya_ebpf::maps::per_cpu_array
  324. #[repr(transparent)] pub struct aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  325. impl<T> aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  326. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::get(&self, index: u32) -> core::option::Option<&T>
  327. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::get_ptr(&self, index: u32) -> core::option::Option<*const T>
  328. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::get_ptr_mut(&self, index: u32) -> core::option::Option<*mut T>
  329. pub const fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  330. pub const fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  331. impl<T> core::marker::Sync for aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  332. impl<T> !core::marker::Freeze for aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  333. impl<T> core::marker::Send for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where T: core::marker::Send
  334. impl<T> core::marker::Unpin for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where T: core::marker::Unpin
  335. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  336. impl<T> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where T: core::panic::unwind_safe::UnwindSafe
  337. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where U: core::convert::From<T>
  338. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::into(self) -> U
  339. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where U: core::convert::Into<T>
  340. pub type aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::Error = core::convert::Infallible
  341. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  342. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where U: core::convert::TryFrom<T>
  343. pub type aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  344. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  345. impl<T> core::any::Any for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where T: 'static + core::marker::Sized
  346. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::type_id(&self) -> core::any::TypeId
  347. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where T: core::marker::Sized
  348. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::borrow(&self) -> &T
  349. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where T: core::marker::Sized
  350. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::borrow_mut(&mut self) -> &mut T
  351. impl<T> core::convert::From<T> for aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  352. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::from(t: T) -> T
  353. pub mod aya_ebpf::maps::perf
  354. #[repr(transparent)] pub struct aya_ebpf::maps::perf::PerfEventArray<T>
  355. impl<T> aya_ebpf::maps::PerfEventArray<T>
  356. pub const fn aya_ebpf::maps::PerfEventArray<T>::new(flags: u32) -> aya_ebpf::maps::PerfEventArray<T>
  357. pub fn aya_ebpf::maps::PerfEventArray<T>::output<C: aya_ebpf::EbpfContext>(&self, ctx: &C, data: &T, flags: u32)
  358. pub fn aya_ebpf::maps::PerfEventArray<T>::output_at_index<C: aya_ebpf::EbpfContext>(&self, ctx: &C, index: u32, data: &T, flags: u32)
  359. pub const fn aya_ebpf::maps::PerfEventArray<T>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::PerfEventArray<T>
  360. pub const fn aya_ebpf::maps::PerfEventArray<T>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::PerfEventArray<T>
  361. impl<T: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::PerfEventArray<T>
  362. impl<T> !core::marker::Freeze for aya_ebpf::maps::PerfEventArray<T>
  363. impl<T> core::marker::Send for aya_ebpf::maps::PerfEventArray<T> where T: core::marker::Send
  364. impl<T> core::marker::Unpin for aya_ebpf::maps::PerfEventArray<T> where T: core::marker::Unpin
  365. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::PerfEventArray<T>
  366. impl<T> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::PerfEventArray<T> where T: core::panic::unwind_safe::UnwindSafe
  367. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::PerfEventArray<T> where U: core::convert::From<T>
  368. pub fn aya_ebpf::maps::PerfEventArray<T>::into(self) -> U
  369. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::PerfEventArray<T> where U: core::convert::Into<T>
  370. pub type aya_ebpf::maps::PerfEventArray<T>::Error = core::convert::Infallible
  371. pub fn aya_ebpf::maps::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  372. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::PerfEventArray<T> where U: core::convert::TryFrom<T>
  373. pub type aya_ebpf::maps::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  374. pub fn aya_ebpf::maps::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  375. impl<T> core::any::Any for aya_ebpf::maps::PerfEventArray<T> where T: 'static + core::marker::Sized
  376. pub fn aya_ebpf::maps::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  377. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::PerfEventArray<T> where T: core::marker::Sized
  378. pub fn aya_ebpf::maps::PerfEventArray<T>::borrow(&self) -> &T
  379. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::PerfEventArray<T> where T: core::marker::Sized
  380. pub fn aya_ebpf::maps::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  381. impl<T> core::convert::From<T> for aya_ebpf::maps::PerfEventArray<T>
  382. pub fn aya_ebpf::maps::PerfEventArray<T>::from(t: T) -> T
  383. #[repr(transparent)] pub struct aya_ebpf::maps::perf::PerfEventByteArray
  384. impl aya_ebpf::maps::PerfEventByteArray
  385. pub const fn aya_ebpf::maps::PerfEventByteArray::new(flags: u32) -> aya_ebpf::maps::PerfEventByteArray
  386. pub fn aya_ebpf::maps::PerfEventByteArray::output<C: aya_ebpf::EbpfContext>(&self, ctx: &C, data: &[u8], flags: u32)
  387. pub fn aya_ebpf::maps::PerfEventByteArray::output_at_index<C: aya_ebpf::EbpfContext>(&self, ctx: &C, index: u32, data: &[u8], flags: u32)
  388. pub const fn aya_ebpf::maps::PerfEventByteArray::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::PerfEventByteArray
  389. pub const fn aya_ebpf::maps::PerfEventByteArray::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::PerfEventByteArray
  390. impl core::marker::Sync for aya_ebpf::maps::PerfEventByteArray
  391. impl !core::marker::Freeze for aya_ebpf::maps::PerfEventByteArray
  392. impl core::marker::Send for aya_ebpf::maps::PerfEventByteArray
  393. impl core::marker::Unpin for aya_ebpf::maps::PerfEventByteArray
  394. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::PerfEventByteArray
  395. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::PerfEventByteArray
  396. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::PerfEventByteArray where U: core::convert::From<T>
  397. pub fn aya_ebpf::maps::PerfEventByteArray::into(self) -> U
  398. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::PerfEventByteArray where U: core::convert::Into<T>
  399. pub type aya_ebpf::maps::PerfEventByteArray::Error = core::convert::Infallible
  400. pub fn aya_ebpf::maps::PerfEventByteArray::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  401. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::PerfEventByteArray where U: core::convert::TryFrom<T>
  402. pub type aya_ebpf::maps::PerfEventByteArray::Error = <U as core::convert::TryFrom<T>>::Error
  403. pub fn aya_ebpf::maps::PerfEventByteArray::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  404. impl<T> core::any::Any for aya_ebpf::maps::PerfEventByteArray where T: 'static + core::marker::Sized
  405. pub fn aya_ebpf::maps::PerfEventByteArray::type_id(&self) -> core::any::TypeId
  406. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::PerfEventByteArray where T: core::marker::Sized
  407. pub fn aya_ebpf::maps::PerfEventByteArray::borrow(&self) -> &T
  408. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::PerfEventByteArray where T: core::marker::Sized
  409. pub fn aya_ebpf::maps::PerfEventByteArray::borrow_mut(&mut self) -> &mut T
  410. impl<T> core::convert::From<T> for aya_ebpf::maps::PerfEventByteArray
  411. pub fn aya_ebpf::maps::PerfEventByteArray::from(t: T) -> T
  412. pub mod aya_ebpf::maps::program_array
  413. #[repr(transparent)] pub struct aya_ebpf::maps::program_array::ProgramArray
  414. impl aya_ebpf::maps::program_array::ProgramArray
  415. pub const fn aya_ebpf::maps::program_array::ProgramArray::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::program_array::ProgramArray
  416. pub unsafe fn aya_ebpf::maps::program_array::ProgramArray::tail_call<C: aya_ebpf::EbpfContext>(&self, ctx: &C, index: u32) -> core::result::Result<never, aya_ebpf_cty::od::c_long>
  417. pub const fn aya_ebpf::maps::program_array::ProgramArray::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::program_array::ProgramArray
  418. impl core::marker::Sync for aya_ebpf::maps::program_array::ProgramArray
  419. impl !core::marker::Freeze for aya_ebpf::maps::program_array::ProgramArray
  420. impl core::marker::Send for aya_ebpf::maps::program_array::ProgramArray
  421. impl core::marker::Unpin for aya_ebpf::maps::program_array::ProgramArray
  422. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::program_array::ProgramArray
  423. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::program_array::ProgramArray
  424. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::program_array::ProgramArray where U: core::convert::From<T>
  425. pub fn aya_ebpf::maps::program_array::ProgramArray::into(self) -> U
  426. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::program_array::ProgramArray where U: core::convert::Into<T>
  427. pub type aya_ebpf::maps::program_array::ProgramArray::Error = core::convert::Infallible
  428. pub fn aya_ebpf::maps::program_array::ProgramArray::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  429. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::program_array::ProgramArray where U: core::convert::TryFrom<T>
  430. pub type aya_ebpf::maps::program_array::ProgramArray::Error = <U as core::convert::TryFrom<T>>::Error
  431. pub fn aya_ebpf::maps::program_array::ProgramArray::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  432. impl<T> core::any::Any for aya_ebpf::maps::program_array::ProgramArray where T: 'static + core::marker::Sized
  433. pub fn aya_ebpf::maps::program_array::ProgramArray::type_id(&self) -> core::any::TypeId
  434. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::program_array::ProgramArray where T: core::marker::Sized
  435. pub fn aya_ebpf::maps::program_array::ProgramArray::borrow(&self) -> &T
  436. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::program_array::ProgramArray where T: core::marker::Sized
  437. pub fn aya_ebpf::maps::program_array::ProgramArray::borrow_mut(&mut self) -> &mut T
  438. impl<T> core::convert::From<T> for aya_ebpf::maps::program_array::ProgramArray
  439. pub fn aya_ebpf::maps::program_array::ProgramArray::from(t: T) -> T
  440. pub mod aya_ebpf::maps::queue
  441. #[repr(transparent)] pub struct aya_ebpf::maps::queue::Queue<T>
  442. impl<T> aya_ebpf::maps::queue::Queue<T>
  443. pub const fn aya_ebpf::maps::queue::Queue<T>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::queue::Queue<T>
  444. pub fn aya_ebpf::maps::queue::Queue<T>::pop(&self) -> core::option::Option<T>
  445. pub fn aya_ebpf::maps::queue::Queue<T>::push(&self, value: &T, flags: u64) -> core::result::Result<(), i64>
  446. pub const fn aya_ebpf::maps::queue::Queue<T>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::queue::Queue<T>
  447. impl<T: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::queue::Queue<T>
  448. impl<T> !core::marker::Freeze for aya_ebpf::maps::queue::Queue<T>
  449. impl<T> core::marker::Send for aya_ebpf::maps::queue::Queue<T> where T: core::marker::Send
  450. impl<T> core::marker::Unpin for aya_ebpf::maps::queue::Queue<T> where T: core::marker::Unpin
  451. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::queue::Queue<T>
  452. impl<T> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::queue::Queue<T> where T: core::panic::unwind_safe::UnwindSafe
  453. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::queue::Queue<T> where U: core::convert::From<T>
  454. pub fn aya_ebpf::maps::queue::Queue<T>::into(self) -> U
  455. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::queue::Queue<T> where U: core::convert::Into<T>
  456. pub type aya_ebpf::maps::queue::Queue<T>::Error = core::convert::Infallible
  457. pub fn aya_ebpf::maps::queue::Queue<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  458. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::queue::Queue<T> where U: core::convert::TryFrom<T>
  459. pub type aya_ebpf::maps::queue::Queue<T>::Error = <U as core::convert::TryFrom<T>>::Error
  460. pub fn aya_ebpf::maps::queue::Queue<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  461. impl<T> core::any::Any for aya_ebpf::maps::queue::Queue<T> where T: 'static + core::marker::Sized
  462. pub fn aya_ebpf::maps::queue::Queue<T>::type_id(&self) -> core::any::TypeId
  463. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::queue::Queue<T> where T: core::marker::Sized
  464. pub fn aya_ebpf::maps::queue::Queue<T>::borrow(&self) -> &T
  465. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::queue::Queue<T> where T: core::marker::Sized
  466. pub fn aya_ebpf::maps::queue::Queue<T>::borrow_mut(&mut self) -> &mut T
  467. impl<T> core::convert::From<T> for aya_ebpf::maps::queue::Queue<T>
  468. pub fn aya_ebpf::maps::queue::Queue<T>::from(t: T) -> T
  469. pub mod aya_ebpf::maps::ring_buf
  470. #[repr(transparent)] pub struct aya_ebpf::maps::ring_buf::RingBuf
  471. impl aya_ebpf::maps::ring_buf::RingBuf
  472. pub fn aya_ebpf::maps::ring_buf::RingBuf::output<T: core::marker::Sized>(&self, data: &T, flags: u64) -> core::result::Result<(), i64>
  473. pub const fn aya_ebpf::maps::ring_buf::RingBuf::pinned(byte_size: u32, flags: u32) -> Self
  474. pub fn aya_ebpf::maps::ring_buf::RingBuf::query(&self, flags: u64) -> u64
  475. pub fn aya_ebpf::maps::ring_buf::RingBuf::reserve<T: 'static>(&self, flags: u64) -> core::option::Option<aya_ebpf::maps::ring_buf::RingBufEntry<T>> where const_assert::Assert<>: const_assert::IsTrue
  476. pub const fn aya_ebpf::maps::ring_buf::RingBuf::with_byte_size(byte_size: u32, flags: u32) -> Self
  477. impl core::marker::Sync for aya_ebpf::maps::ring_buf::RingBuf
  478. impl !core::marker::Freeze for aya_ebpf::maps::ring_buf::RingBuf
  479. impl core::marker::Send for aya_ebpf::maps::ring_buf::RingBuf
  480. impl core::marker::Unpin for aya_ebpf::maps::ring_buf::RingBuf
  481. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::ring_buf::RingBuf
  482. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::ring_buf::RingBuf
  483. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::ring_buf::RingBuf where U: core::convert::From<T>
  484. pub fn aya_ebpf::maps::ring_buf::RingBuf::into(self) -> U
  485. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::ring_buf::RingBuf where U: core::convert::Into<T>
  486. pub type aya_ebpf::maps::ring_buf::RingBuf::Error = core::convert::Infallible
  487. pub fn aya_ebpf::maps::ring_buf::RingBuf::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  488. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::ring_buf::RingBuf where U: core::convert::TryFrom<T>
  489. pub type aya_ebpf::maps::ring_buf::RingBuf::Error = <U as core::convert::TryFrom<T>>::Error
  490. pub fn aya_ebpf::maps::ring_buf::RingBuf::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  491. impl<T> core::any::Any for aya_ebpf::maps::ring_buf::RingBuf where T: 'static + core::marker::Sized
  492. pub fn aya_ebpf::maps::ring_buf::RingBuf::type_id(&self) -> core::any::TypeId
  493. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::ring_buf::RingBuf where T: core::marker::Sized
  494. pub fn aya_ebpf::maps::ring_buf::RingBuf::borrow(&self) -> &T
  495. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::ring_buf::RingBuf where T: core::marker::Sized
  496. pub fn aya_ebpf::maps::ring_buf::RingBuf::borrow_mut(&mut self) -> &mut T
  497. impl<T> core::convert::From<T> for aya_ebpf::maps::ring_buf::RingBuf
  498. pub fn aya_ebpf::maps::ring_buf::RingBuf::from(t: T) -> T
  499. pub struct aya_ebpf::maps::ring_buf::RingBufEntry<T: 'static>(_)
  500. impl<T> aya_ebpf::maps::ring_buf::RingBufEntry<T>
  501. pub fn aya_ebpf::maps::ring_buf::RingBufEntry<T>::discard(self, flags: u64)
  502. pub fn aya_ebpf::maps::ring_buf::RingBufEntry<T>::submit(self, flags: u64)
  503. impl<T> core::ops::deref::Deref for aya_ebpf::maps::ring_buf::RingBufEntry<T>
  504. pub type aya_ebpf::maps::ring_buf::RingBufEntry<T>::Target = core::mem::maybe_uninit::MaybeUninit<T>
  505. pub fn aya_ebpf::maps::ring_buf::RingBufEntry<T>::deref(&self) -> &Self::Target
  506. impl<T> core::ops::deref::DerefMut for aya_ebpf::maps::ring_buf::RingBufEntry<T>
  507. pub fn aya_ebpf::maps::ring_buf::RingBufEntry<T>::deref_mut(&mut self) -> &mut Self::Target
  508. impl<T> core::marker::Freeze for aya_ebpf::maps::ring_buf::RingBufEntry<T>
  509. impl<T> core::marker::Send for aya_ebpf::maps::ring_buf::RingBufEntry<T> where T: core::marker::Send
  510. impl<T> core::marker::Sync for aya_ebpf::maps::ring_buf::RingBufEntry<T> where T: core::marker::Sync
  511. impl<T> core::marker::Unpin for aya_ebpf::maps::ring_buf::RingBufEntry<T>
  512. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::ring_buf::RingBufEntry<T> where T: core::panic::unwind_safe::RefUnwindSafe
  513. impl<T> !core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::ring_buf::RingBufEntry<T>
  514. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::ring_buf::RingBufEntry<T> where U: core::convert::From<T>
  515. pub fn aya_ebpf::maps::ring_buf::RingBufEntry<T>::into(self) -> U
  516. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::ring_buf::RingBufEntry<T> where U: core::convert::Into<T>
  517. pub type aya_ebpf::maps::ring_buf::RingBufEntry<T>::Error = core::convert::Infallible
  518. pub fn aya_ebpf::maps::ring_buf::RingBufEntry<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  519. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::ring_buf::RingBufEntry<T> where U: core::convert::TryFrom<T>
  520. pub type aya_ebpf::maps::ring_buf::RingBufEntry<T>::Error = <U as core::convert::TryFrom<T>>::Error
  521. pub fn aya_ebpf::maps::ring_buf::RingBufEntry<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  522. impl<T> core::any::Any for aya_ebpf::maps::ring_buf::RingBufEntry<T> where T: 'static + core::marker::Sized
  523. pub fn aya_ebpf::maps::ring_buf::RingBufEntry<T>::type_id(&self) -> core::any::TypeId
  524. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::ring_buf::RingBufEntry<T> where T: core::marker::Sized
  525. pub fn aya_ebpf::maps::ring_buf::RingBufEntry<T>::borrow(&self) -> &T
  526. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::ring_buf::RingBufEntry<T> where T: core::marker::Sized
  527. pub fn aya_ebpf::maps::ring_buf::RingBufEntry<T>::borrow_mut(&mut self) -> &mut T
  528. impl<T> core::convert::From<T> for aya_ebpf::maps::ring_buf::RingBufEntry<T>
  529. pub fn aya_ebpf::maps::ring_buf::RingBufEntry<T>::from(t: T) -> T
  530. pub mod aya_ebpf::maps::sock_hash
  531. #[repr(transparent)] pub struct aya_ebpf::maps::sock_hash::SockHash<K>
  532. impl<K> aya_ebpf::maps::sock_hash::SockHash<K>
  533. pub const fn aya_ebpf::maps::sock_hash::SockHash<K>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::sock_hash::SockHash<K>
  534. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::redirect_msg(&self, ctx: &aya_ebpf::programs::sk_msg::SkMsgContext, key: &mut K, flags: u64) -> i64
  535. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::redirect_sk_lookup(&mut self, ctx: &aya_ebpf::programs::sk_lookup::SkLookupContext, key: impl core::borrow::Borrow<K>, flags: u64) -> core::result::Result<(), u32>
  536. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::redirect_skb(&self, ctx: &aya_ebpf::programs::sk_buff::SkBuffContext, key: &mut K, flags: u64) -> i64
  537. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::update(&self, key: &mut K, sk_ops: &mut aya_ebpf_bindings::x86_64::bindings::bpf_sock_ops, flags: u64) -> core::result::Result<(), i64>
  538. pub const fn aya_ebpf::maps::sock_hash::SockHash<K>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::sock_hash::SockHash<K>
  539. impl<K: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::sock_hash::SockHash<K>
  540. impl<K> !core::marker::Freeze for aya_ebpf::maps::sock_hash::SockHash<K>
  541. impl<K> core::marker::Send for aya_ebpf::maps::sock_hash::SockHash<K> where K: core::marker::Send
  542. impl<K> core::marker::Unpin for aya_ebpf::maps::sock_hash::SockHash<K> where K: core::marker::Unpin
  543. impl<K> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::sock_hash::SockHash<K>
  544. impl<K> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::sock_hash::SockHash<K> where K: core::panic::unwind_safe::UnwindSafe
  545. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::sock_hash::SockHash<K> where U: core::convert::From<T>
  546. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::into(self) -> U
  547. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::sock_hash::SockHash<K> where U: core::convert::Into<T>
  548. pub type aya_ebpf::maps::sock_hash::SockHash<K>::Error = core::convert::Infallible
  549. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  550. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::sock_hash::SockHash<K> where U: core::convert::TryFrom<T>
  551. pub type aya_ebpf::maps::sock_hash::SockHash<K>::Error = <U as core::convert::TryFrom<T>>::Error
  552. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  553. impl<T> core::any::Any for aya_ebpf::maps::sock_hash::SockHash<K> where T: 'static + core::marker::Sized
  554. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::type_id(&self) -> core::any::TypeId
  555. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::sock_hash::SockHash<K> where T: core::marker::Sized
  556. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::borrow(&self) -> &T
  557. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::sock_hash::SockHash<K> where T: core::marker::Sized
  558. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::borrow_mut(&mut self) -> &mut T
  559. impl<T> core::convert::From<T> for aya_ebpf::maps::sock_hash::SockHash<K>
  560. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::from(t: T) -> T
  561. pub mod aya_ebpf::maps::sock_map
  562. #[repr(transparent)] pub struct aya_ebpf::maps::sock_map::SockMap
  563. impl aya_ebpf::maps::sock_map::SockMap
  564. pub const fn aya_ebpf::maps::sock_map::SockMap::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::sock_map::SockMap
  565. pub unsafe fn aya_ebpf::maps::sock_map::SockMap::redirect_msg(&self, ctx: &aya_ebpf::programs::sk_msg::SkMsgContext, index: u32, flags: u64) -> i64
  566. pub fn aya_ebpf::maps::sock_map::SockMap::redirect_sk_lookup(&mut self, ctx: &aya_ebpf::programs::sk_lookup::SkLookupContext, index: u32, flags: u64) -> core::result::Result<(), u32>
  567. pub unsafe fn aya_ebpf::maps::sock_map::SockMap::redirect_skb(&self, ctx: &aya_ebpf::programs::sk_buff::SkBuffContext, index: u32, flags: u64) -> i64
  568. pub unsafe fn aya_ebpf::maps::sock_map::SockMap::update(&self, index: u32, sk_ops: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock_ops, flags: u64) -> core::result::Result<(), i64>
  569. pub const fn aya_ebpf::maps::sock_map::SockMap::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::sock_map::SockMap
  570. impl core::marker::Sync for aya_ebpf::maps::sock_map::SockMap
  571. impl !core::marker::Freeze for aya_ebpf::maps::sock_map::SockMap
  572. impl core::marker::Send for aya_ebpf::maps::sock_map::SockMap
  573. impl core::marker::Unpin for aya_ebpf::maps::sock_map::SockMap
  574. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::sock_map::SockMap
  575. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::sock_map::SockMap
  576. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::sock_map::SockMap where U: core::convert::From<T>
  577. pub fn aya_ebpf::maps::sock_map::SockMap::into(self) -> U
  578. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::sock_map::SockMap where U: core::convert::Into<T>
  579. pub type aya_ebpf::maps::sock_map::SockMap::Error = core::convert::Infallible
  580. pub fn aya_ebpf::maps::sock_map::SockMap::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  581. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::sock_map::SockMap where U: core::convert::TryFrom<T>
  582. pub type aya_ebpf::maps::sock_map::SockMap::Error = <U as core::convert::TryFrom<T>>::Error
  583. pub fn aya_ebpf::maps::sock_map::SockMap::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  584. impl<T> core::any::Any for aya_ebpf::maps::sock_map::SockMap where T: 'static + core::marker::Sized
  585. pub fn aya_ebpf::maps::sock_map::SockMap::type_id(&self) -> core::any::TypeId
  586. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::sock_map::SockMap where T: core::marker::Sized
  587. pub fn aya_ebpf::maps::sock_map::SockMap::borrow(&self) -> &T
  588. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::sock_map::SockMap where T: core::marker::Sized
  589. pub fn aya_ebpf::maps::sock_map::SockMap::borrow_mut(&mut self) -> &mut T
  590. impl<T> core::convert::From<T> for aya_ebpf::maps::sock_map::SockMap
  591. pub fn aya_ebpf::maps::sock_map::SockMap::from(t: T) -> T
  592. pub mod aya_ebpf::maps::stack
  593. #[repr(transparent)] pub struct aya_ebpf::maps::stack::Stack<T>
  594. impl<T> aya_ebpf::maps::stack::Stack<T>
  595. pub const fn aya_ebpf::maps::stack::Stack<T>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::stack::Stack<T>
  596. pub fn aya_ebpf::maps::stack::Stack<T>::pop(&mut self) -> core::option::Option<T>
  597. pub fn aya_ebpf::maps::stack::Stack<T>::push(&mut self, value: &T, flags: u64) -> core::result::Result<(), i64>
  598. pub const fn aya_ebpf::maps::stack::Stack<T>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::stack::Stack<T>
  599. impl<T> core::marker::Freeze for aya_ebpf::maps::stack::Stack<T>
  600. impl<T> core::marker::Send for aya_ebpf::maps::stack::Stack<T> where T: core::marker::Send
  601. impl<T> core::marker::Sync for aya_ebpf::maps::stack::Stack<T> where T: core::marker::Sync
  602. impl<T> core::marker::Unpin for aya_ebpf::maps::stack::Stack<T> where T: core::marker::Unpin
  603. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::stack::Stack<T> where T: core::panic::unwind_safe::RefUnwindSafe
  604. impl<T> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::stack::Stack<T> where T: core::panic::unwind_safe::UnwindSafe
  605. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::stack::Stack<T> where U: core::convert::From<T>
  606. pub fn aya_ebpf::maps::stack::Stack<T>::into(self) -> U
  607. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::stack::Stack<T> where U: core::convert::Into<T>
  608. pub type aya_ebpf::maps::stack::Stack<T>::Error = core::convert::Infallible
  609. pub fn aya_ebpf::maps::stack::Stack<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  610. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::stack::Stack<T> where U: core::convert::TryFrom<T>
  611. pub type aya_ebpf::maps::stack::Stack<T>::Error = <U as core::convert::TryFrom<T>>::Error
  612. pub fn aya_ebpf::maps::stack::Stack<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  613. impl<T> core::any::Any for aya_ebpf::maps::stack::Stack<T> where T: 'static + core::marker::Sized
  614. pub fn aya_ebpf::maps::stack::Stack<T>::type_id(&self) -> core::any::TypeId
  615. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::stack::Stack<T> where T: core::marker::Sized
  616. pub fn aya_ebpf::maps::stack::Stack<T>::borrow(&self) -> &T
  617. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::stack::Stack<T> where T: core::marker::Sized
  618. pub fn aya_ebpf::maps::stack::Stack<T>::borrow_mut(&mut self) -> &mut T
  619. impl<T> core::convert::From<T> for aya_ebpf::maps::stack::Stack<T>
  620. pub fn aya_ebpf::maps::stack::Stack<T>::from(t: T) -> T
  621. pub mod aya_ebpf::maps::stack_trace
  622. #[repr(transparent)] pub struct aya_ebpf::maps::stack_trace::StackTrace
  623. impl aya_ebpf::maps::stack_trace::StackTrace
  624. pub unsafe fn aya_ebpf::maps::stack_trace::StackTrace::get_stackid<C: aya_ebpf::EbpfContext>(&self, ctx: &C, flags: u64) -> core::result::Result<i64, i64>
  625. pub const fn aya_ebpf::maps::stack_trace::StackTrace::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::stack_trace::StackTrace
  626. pub const fn aya_ebpf::maps::stack_trace::StackTrace::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::stack_trace::StackTrace
  627. impl core::marker::Sync for aya_ebpf::maps::stack_trace::StackTrace
  628. impl !core::marker::Freeze for aya_ebpf::maps::stack_trace::StackTrace
  629. impl core::marker::Send for aya_ebpf::maps::stack_trace::StackTrace
  630. impl core::marker::Unpin for aya_ebpf::maps::stack_trace::StackTrace
  631. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::stack_trace::StackTrace
  632. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::stack_trace::StackTrace
  633. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::stack_trace::StackTrace where U: core::convert::From<T>
  634. pub fn aya_ebpf::maps::stack_trace::StackTrace::into(self) -> U
  635. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::stack_trace::StackTrace where U: core::convert::Into<T>
  636. pub type aya_ebpf::maps::stack_trace::StackTrace::Error = core::convert::Infallible
  637. pub fn aya_ebpf::maps::stack_trace::StackTrace::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  638. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::stack_trace::StackTrace where U: core::convert::TryFrom<T>
  639. pub type aya_ebpf::maps::stack_trace::StackTrace::Error = <U as core::convert::TryFrom<T>>::Error
  640. pub fn aya_ebpf::maps::stack_trace::StackTrace::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  641. impl<T> core::any::Any for aya_ebpf::maps::stack_trace::StackTrace where T: 'static + core::marker::Sized
  642. pub fn aya_ebpf::maps::stack_trace::StackTrace::type_id(&self) -> core::any::TypeId
  643. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::stack_trace::StackTrace where T: core::marker::Sized
  644. pub fn aya_ebpf::maps::stack_trace::StackTrace::borrow(&self) -> &T
  645. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::stack_trace::StackTrace where T: core::marker::Sized
  646. pub fn aya_ebpf::maps::stack_trace::StackTrace::borrow_mut(&mut self) -> &mut T
  647. impl<T> core::convert::From<T> for aya_ebpf::maps::stack_trace::StackTrace
  648. pub fn aya_ebpf::maps::stack_trace::StackTrace::from(t: T) -> T
  649. pub mod aya_ebpf::maps::xdp
  650. #[repr(transparent)] pub struct aya_ebpf::maps::xdp::CpuMap
  651. impl aya_ebpf::maps::CpuMap
  652. pub const fn aya_ebpf::maps::CpuMap::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::CpuMap
  653. pub fn aya_ebpf::maps::CpuMap::redirect(&self, index: u32, flags: u64) -> core::result::Result<u32, u32>
  654. pub const fn aya_ebpf::maps::CpuMap::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::CpuMap
  655. impl core::marker::Sync for aya_ebpf::maps::CpuMap
  656. impl !core::marker::Freeze for aya_ebpf::maps::CpuMap
  657. impl core::marker::Send for aya_ebpf::maps::CpuMap
  658. impl core::marker::Unpin for aya_ebpf::maps::CpuMap
  659. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::CpuMap
  660. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::CpuMap
  661. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::CpuMap where U: core::convert::From<T>
  662. pub fn aya_ebpf::maps::CpuMap::into(self) -> U
  663. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::CpuMap where U: core::convert::Into<T>
  664. pub type aya_ebpf::maps::CpuMap::Error = core::convert::Infallible
  665. pub fn aya_ebpf::maps::CpuMap::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  666. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::CpuMap where U: core::convert::TryFrom<T>
  667. pub type aya_ebpf::maps::CpuMap::Error = <U as core::convert::TryFrom<T>>::Error
  668. pub fn aya_ebpf::maps::CpuMap::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  669. impl<T> core::any::Any for aya_ebpf::maps::CpuMap where T: 'static + core::marker::Sized
  670. pub fn aya_ebpf::maps::CpuMap::type_id(&self) -> core::any::TypeId
  671. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::CpuMap where T: core::marker::Sized
  672. pub fn aya_ebpf::maps::CpuMap::borrow(&self) -> &T
  673. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::CpuMap where T: core::marker::Sized
  674. pub fn aya_ebpf::maps::CpuMap::borrow_mut(&mut self) -> &mut T
  675. impl<T> core::convert::From<T> for aya_ebpf::maps::CpuMap
  676. pub fn aya_ebpf::maps::CpuMap::from(t: T) -> T
  677. #[repr(transparent)] pub struct aya_ebpf::maps::xdp::DevMap
  678. impl aya_ebpf::maps::DevMap
  679. pub fn aya_ebpf::maps::DevMap::get(&self, index: u32) -> core::option::Option<DevMapValue>
  680. pub const fn aya_ebpf::maps::DevMap::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::DevMap
  681. pub fn aya_ebpf::maps::DevMap::redirect(&self, index: u32, flags: u64) -> core::result::Result<u32, u32>
  682. pub const fn aya_ebpf::maps::DevMap::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::DevMap
  683. impl core::marker::Sync for aya_ebpf::maps::DevMap
  684. impl !core::marker::Freeze for aya_ebpf::maps::DevMap
  685. impl core::marker::Send for aya_ebpf::maps::DevMap
  686. impl core::marker::Unpin for aya_ebpf::maps::DevMap
  687. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::DevMap
  688. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::DevMap
  689. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::DevMap where U: core::convert::From<T>
  690. pub fn aya_ebpf::maps::DevMap::into(self) -> U
  691. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::DevMap where U: core::convert::Into<T>
  692. pub type aya_ebpf::maps::DevMap::Error = core::convert::Infallible
  693. pub fn aya_ebpf::maps::DevMap::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  694. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::DevMap where U: core::convert::TryFrom<T>
  695. pub type aya_ebpf::maps::DevMap::Error = <U as core::convert::TryFrom<T>>::Error
  696. pub fn aya_ebpf::maps::DevMap::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  697. impl<T> core::any::Any for aya_ebpf::maps::DevMap where T: 'static + core::marker::Sized
  698. pub fn aya_ebpf::maps::DevMap::type_id(&self) -> core::any::TypeId
  699. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::DevMap where T: core::marker::Sized
  700. pub fn aya_ebpf::maps::DevMap::borrow(&self) -> &T
  701. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::DevMap where T: core::marker::Sized
  702. pub fn aya_ebpf::maps::DevMap::borrow_mut(&mut self) -> &mut T
  703. impl<T> core::convert::From<T> for aya_ebpf::maps::DevMap
  704. pub fn aya_ebpf::maps::DevMap::from(t: T) -> T
  705. #[repr(transparent)] pub struct aya_ebpf::maps::xdp::DevMapHash
  706. impl aya_ebpf::maps::DevMapHash
  707. pub fn aya_ebpf::maps::DevMapHash::get(&self, key: u32) -> core::option::Option<DevMapValue>
  708. pub const fn aya_ebpf::maps::DevMapHash::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::DevMapHash
  709. pub fn aya_ebpf::maps::DevMapHash::redirect(&self, key: u32, flags: u64) -> core::result::Result<u32, u32>
  710. pub const fn aya_ebpf::maps::DevMapHash::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::DevMapHash
  711. impl core::marker::Sync for aya_ebpf::maps::DevMapHash
  712. impl !core::marker::Freeze for aya_ebpf::maps::DevMapHash
  713. impl core::marker::Send for aya_ebpf::maps::DevMapHash
  714. impl core::marker::Unpin for aya_ebpf::maps::DevMapHash
  715. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::DevMapHash
  716. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::DevMapHash
  717. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::DevMapHash where U: core::convert::From<T>
  718. pub fn aya_ebpf::maps::DevMapHash::into(self) -> U
  719. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::DevMapHash where U: core::convert::Into<T>
  720. pub type aya_ebpf::maps::DevMapHash::Error = core::convert::Infallible
  721. pub fn aya_ebpf::maps::DevMapHash::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  722. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::DevMapHash where U: core::convert::TryFrom<T>
  723. pub type aya_ebpf::maps::DevMapHash::Error = <U as core::convert::TryFrom<T>>::Error
  724. pub fn aya_ebpf::maps::DevMapHash::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  725. impl<T> core::any::Any for aya_ebpf::maps::DevMapHash where T: 'static + core::marker::Sized
  726. pub fn aya_ebpf::maps::DevMapHash::type_id(&self) -> core::any::TypeId
  727. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::DevMapHash where T: core::marker::Sized
  728. pub fn aya_ebpf::maps::DevMapHash::borrow(&self) -> &T
  729. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::DevMapHash where T: core::marker::Sized
  730. pub fn aya_ebpf::maps::DevMapHash::borrow_mut(&mut self) -> &mut T
  731. impl<T> core::convert::From<T> for aya_ebpf::maps::DevMapHash
  732. pub fn aya_ebpf::maps::DevMapHash::from(t: T) -> T
  733. #[repr(transparent)] pub struct aya_ebpf::maps::xdp::XskMap
  734. impl aya_ebpf::maps::XskMap
  735. pub fn aya_ebpf::maps::XskMap::get(&self, index: u32) -> core::option::Option<u32>
  736. pub const fn aya_ebpf::maps::XskMap::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::XskMap
  737. pub fn aya_ebpf::maps::XskMap::redirect(&self, index: u32, flags: u64) -> core::result::Result<u32, u32>
  738. pub const fn aya_ebpf::maps::XskMap::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::XskMap
  739. impl core::marker::Sync for aya_ebpf::maps::XskMap
  740. impl !core::marker::Freeze for aya_ebpf::maps::XskMap
  741. impl core::marker::Send for aya_ebpf::maps::XskMap
  742. impl core::marker::Unpin for aya_ebpf::maps::XskMap
  743. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::XskMap
  744. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::XskMap
  745. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::XskMap where U: core::convert::From<T>
  746. pub fn aya_ebpf::maps::XskMap::into(self) -> U
  747. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::XskMap where U: core::convert::Into<T>
  748. pub type aya_ebpf::maps::XskMap::Error = core::convert::Infallible
  749. pub fn aya_ebpf::maps::XskMap::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  750. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::XskMap where U: core::convert::TryFrom<T>
  751. pub type aya_ebpf::maps::XskMap::Error = <U as core::convert::TryFrom<T>>::Error
  752. pub fn aya_ebpf::maps::XskMap::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  753. impl<T> core::any::Any for aya_ebpf::maps::XskMap where T: 'static + core::marker::Sized
  754. pub fn aya_ebpf::maps::XskMap::type_id(&self) -> core::any::TypeId
  755. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::XskMap where T: core::marker::Sized
  756. pub fn aya_ebpf::maps::XskMap::borrow(&self) -> &T
  757. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::XskMap where T: core::marker::Sized
  758. pub fn aya_ebpf::maps::XskMap::borrow_mut(&mut self) -> &mut T
  759. impl<T> core::convert::From<T> for aya_ebpf::maps::XskMap
  760. pub fn aya_ebpf::maps::XskMap::from(t: T) -> T
  761. #[repr(transparent)] pub struct aya_ebpf::maps::Array<T>
  762. impl<T> aya_ebpf::maps::array::Array<T>
  763. pub fn aya_ebpf::maps::array::Array<T>::get(&self, index: u32) -> core::option::Option<&T>
  764. pub fn aya_ebpf::maps::array::Array<T>::get_ptr(&self, index: u32) -> core::option::Option<*const T>
  765. pub fn aya_ebpf::maps::array::Array<T>::get_ptr_mut(&self, index: u32) -> core::option::Option<*mut T>
  766. pub const fn aya_ebpf::maps::array::Array<T>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::array::Array<T>
  767. pub const fn aya_ebpf::maps::array::Array<T>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::array::Array<T>
  768. impl<T: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::array::Array<T>
  769. impl<T> !core::marker::Freeze for aya_ebpf::maps::array::Array<T>
  770. impl<T> core::marker::Send for aya_ebpf::maps::array::Array<T> where T: core::marker::Send
  771. impl<T> core::marker::Unpin for aya_ebpf::maps::array::Array<T> where T: core::marker::Unpin
  772. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::array::Array<T>
  773. impl<T> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::array::Array<T> where T: core::panic::unwind_safe::UnwindSafe
  774. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::array::Array<T> where U: core::convert::From<T>
  775. pub fn aya_ebpf::maps::array::Array<T>::into(self) -> U
  776. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::array::Array<T> where U: core::convert::Into<T>
  777. pub type aya_ebpf::maps::array::Array<T>::Error = core::convert::Infallible
  778. pub fn aya_ebpf::maps::array::Array<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  779. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::array::Array<T> where U: core::convert::TryFrom<T>
  780. pub type aya_ebpf::maps::array::Array<T>::Error = <U as core::convert::TryFrom<T>>::Error
  781. pub fn aya_ebpf::maps::array::Array<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  782. impl<T> core::any::Any for aya_ebpf::maps::array::Array<T> where T: 'static + core::marker::Sized
  783. pub fn aya_ebpf::maps::array::Array<T>::type_id(&self) -> core::any::TypeId
  784. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::array::Array<T> where T: core::marker::Sized
  785. pub fn aya_ebpf::maps::array::Array<T>::borrow(&self) -> &T
  786. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::array::Array<T> where T: core::marker::Sized
  787. pub fn aya_ebpf::maps::array::Array<T>::borrow_mut(&mut self) -> &mut T
  788. impl<T> core::convert::From<T> for aya_ebpf::maps::array::Array<T>
  789. pub fn aya_ebpf::maps::array::Array<T>::from(t: T) -> T
  790. #[repr(transparent)] pub struct aya_ebpf::maps::BloomFilter<T>
  791. impl<T> aya_ebpf::maps::bloom_filter::BloomFilter<T>
  792. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::contains(&mut self, value: &T) -> core::result::Result<(), i64>
  793. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::insert(&mut self, value: &T, flags: u64) -> core::result::Result<(), i64>
  794. pub const fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::bloom_filter::BloomFilter<T>
  795. pub const fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::bloom_filter::BloomFilter<T>
  796. impl<T> core::marker::Freeze for aya_ebpf::maps::bloom_filter::BloomFilter<T>
  797. impl<T> core::marker::Send for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::marker::Send
  798. impl<T> core::marker::Sync for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::marker::Sync
  799. impl<T> core::marker::Unpin for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::marker::Unpin
  800. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::panic::unwind_safe::RefUnwindSafe
  801. impl<T> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::panic::unwind_safe::UnwindSafe
  802. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::bloom_filter::BloomFilter<T> where U: core::convert::From<T>
  803. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::into(self) -> U
  804. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::bloom_filter::BloomFilter<T> where U: core::convert::Into<T>
  805. pub type aya_ebpf::maps::bloom_filter::BloomFilter<T>::Error = core::convert::Infallible
  806. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  807. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::bloom_filter::BloomFilter<T> where U: core::convert::TryFrom<T>
  808. pub type aya_ebpf::maps::bloom_filter::BloomFilter<T>::Error = <U as core::convert::TryFrom<T>>::Error
  809. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  810. impl<T> core::any::Any for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: 'static + core::marker::Sized
  811. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::type_id(&self) -> core::any::TypeId
  812. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::marker::Sized
  813. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::borrow(&self) -> &T
  814. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::bloom_filter::BloomFilter<T> where T: core::marker::Sized
  815. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::borrow_mut(&mut self) -> &mut T
  816. impl<T> core::convert::From<T> for aya_ebpf::maps::bloom_filter::BloomFilter<T>
  817. pub fn aya_ebpf::maps::bloom_filter::BloomFilter<T>::from(t: T) -> T
  818. #[repr(transparent)] pub struct aya_ebpf::maps::CpuMap
  819. impl aya_ebpf::maps::CpuMap
  820. pub const fn aya_ebpf::maps::CpuMap::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::CpuMap
  821. pub fn aya_ebpf::maps::CpuMap::redirect(&self, index: u32, flags: u64) -> core::result::Result<u32, u32>
  822. pub const fn aya_ebpf::maps::CpuMap::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::CpuMap
  823. impl core::marker::Sync for aya_ebpf::maps::CpuMap
  824. impl !core::marker::Freeze for aya_ebpf::maps::CpuMap
  825. impl core::marker::Send for aya_ebpf::maps::CpuMap
  826. impl core::marker::Unpin for aya_ebpf::maps::CpuMap
  827. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::CpuMap
  828. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::CpuMap
  829. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::CpuMap where U: core::convert::From<T>
  830. pub fn aya_ebpf::maps::CpuMap::into(self) -> U
  831. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::CpuMap where U: core::convert::Into<T>
  832. pub type aya_ebpf::maps::CpuMap::Error = core::convert::Infallible
  833. pub fn aya_ebpf::maps::CpuMap::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  834. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::CpuMap where U: core::convert::TryFrom<T>
  835. pub type aya_ebpf::maps::CpuMap::Error = <U as core::convert::TryFrom<T>>::Error
  836. pub fn aya_ebpf::maps::CpuMap::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  837. impl<T> core::any::Any for aya_ebpf::maps::CpuMap where T: 'static + core::marker::Sized
  838. pub fn aya_ebpf::maps::CpuMap::type_id(&self) -> core::any::TypeId
  839. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::CpuMap where T: core::marker::Sized
  840. pub fn aya_ebpf::maps::CpuMap::borrow(&self) -> &T
  841. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::CpuMap where T: core::marker::Sized
  842. pub fn aya_ebpf::maps::CpuMap::borrow_mut(&mut self) -> &mut T
  843. impl<T> core::convert::From<T> for aya_ebpf::maps::CpuMap
  844. pub fn aya_ebpf::maps::CpuMap::from(t: T) -> T
  845. #[repr(transparent)] pub struct aya_ebpf::maps::DevMap
  846. impl aya_ebpf::maps::DevMap
  847. pub fn aya_ebpf::maps::DevMap::get(&self, index: u32) -> core::option::Option<DevMapValue>
  848. pub const fn aya_ebpf::maps::DevMap::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::DevMap
  849. pub fn aya_ebpf::maps::DevMap::redirect(&self, index: u32, flags: u64) -> core::result::Result<u32, u32>
  850. pub const fn aya_ebpf::maps::DevMap::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::DevMap
  851. impl core::marker::Sync for aya_ebpf::maps::DevMap
  852. impl !core::marker::Freeze for aya_ebpf::maps::DevMap
  853. impl core::marker::Send for aya_ebpf::maps::DevMap
  854. impl core::marker::Unpin for aya_ebpf::maps::DevMap
  855. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::DevMap
  856. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::DevMap
  857. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::DevMap where U: core::convert::From<T>
  858. pub fn aya_ebpf::maps::DevMap::into(self) -> U
  859. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::DevMap where U: core::convert::Into<T>
  860. pub type aya_ebpf::maps::DevMap::Error = core::convert::Infallible
  861. pub fn aya_ebpf::maps::DevMap::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  862. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::DevMap where U: core::convert::TryFrom<T>
  863. pub type aya_ebpf::maps::DevMap::Error = <U as core::convert::TryFrom<T>>::Error
  864. pub fn aya_ebpf::maps::DevMap::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  865. impl<T> core::any::Any for aya_ebpf::maps::DevMap where T: 'static + core::marker::Sized
  866. pub fn aya_ebpf::maps::DevMap::type_id(&self) -> core::any::TypeId
  867. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::DevMap where T: core::marker::Sized
  868. pub fn aya_ebpf::maps::DevMap::borrow(&self) -> &T
  869. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::DevMap where T: core::marker::Sized
  870. pub fn aya_ebpf::maps::DevMap::borrow_mut(&mut self) -> &mut T
  871. impl<T> core::convert::From<T> for aya_ebpf::maps::DevMap
  872. pub fn aya_ebpf::maps::DevMap::from(t: T) -> T
  873. #[repr(transparent)] pub struct aya_ebpf::maps::DevMapHash
  874. impl aya_ebpf::maps::DevMapHash
  875. pub fn aya_ebpf::maps::DevMapHash::get(&self, key: u32) -> core::option::Option<DevMapValue>
  876. pub const fn aya_ebpf::maps::DevMapHash::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::DevMapHash
  877. pub fn aya_ebpf::maps::DevMapHash::redirect(&self, key: u32, flags: u64) -> core::result::Result<u32, u32>
  878. pub const fn aya_ebpf::maps::DevMapHash::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::DevMapHash
  879. impl core::marker::Sync for aya_ebpf::maps::DevMapHash
  880. impl !core::marker::Freeze for aya_ebpf::maps::DevMapHash
  881. impl core::marker::Send for aya_ebpf::maps::DevMapHash
  882. impl core::marker::Unpin for aya_ebpf::maps::DevMapHash
  883. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::DevMapHash
  884. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::DevMapHash
  885. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::DevMapHash where U: core::convert::From<T>
  886. pub fn aya_ebpf::maps::DevMapHash::into(self) -> U
  887. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::DevMapHash where U: core::convert::Into<T>
  888. pub type aya_ebpf::maps::DevMapHash::Error = core::convert::Infallible
  889. pub fn aya_ebpf::maps::DevMapHash::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  890. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::DevMapHash where U: core::convert::TryFrom<T>
  891. pub type aya_ebpf::maps::DevMapHash::Error = <U as core::convert::TryFrom<T>>::Error
  892. pub fn aya_ebpf::maps::DevMapHash::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  893. impl<T> core::any::Any for aya_ebpf::maps::DevMapHash where T: 'static + core::marker::Sized
  894. pub fn aya_ebpf::maps::DevMapHash::type_id(&self) -> core::any::TypeId
  895. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::DevMapHash where T: core::marker::Sized
  896. pub fn aya_ebpf::maps::DevMapHash::borrow(&self) -> &T
  897. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::DevMapHash where T: core::marker::Sized
  898. pub fn aya_ebpf::maps::DevMapHash::borrow_mut(&mut self) -> &mut T
  899. impl<T> core::convert::From<T> for aya_ebpf::maps::DevMapHash
  900. pub fn aya_ebpf::maps::DevMapHash::from(t: T) -> T
  901. #[repr(transparent)] pub struct aya_ebpf::maps::HashMap<K, V>
  902. impl<K, V> aya_ebpf::maps::hash_map::HashMap<K, V>
  903. pub unsafe fn aya_ebpf::maps::hash_map::HashMap<K, V>::get(&self, key: &K) -> core::option::Option<&V>
  904. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::get_ptr(&self, key: &K) -> core::option::Option<*const V>
  905. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V>
  906. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  907. pub const fn aya_ebpf::maps::hash_map::HashMap<K, V>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::HashMap<K, V>
  908. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::remove(&self, key: &K) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  909. pub const fn aya_ebpf::maps::hash_map::HashMap<K, V>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::HashMap<K, V>
  910. impl<K: core::marker::Sync, V: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::hash_map::HashMap<K, V>
  911. impl<K, V> !core::marker::Freeze for aya_ebpf::maps::hash_map::HashMap<K, V>
  912. impl<K, V> core::marker::Send for aya_ebpf::maps::hash_map::HashMap<K, V> where K: core::marker::Send, V: core::marker::Send
  913. impl<K, V> core::marker::Unpin for aya_ebpf::maps::hash_map::HashMap<K, V> where K: core::marker::Unpin, V: core::marker::Unpin
  914. impl<K, V> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::hash_map::HashMap<K, V>
  915. impl<K, V> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::hash_map::HashMap<K, V> where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  916. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::hash_map::HashMap<K, V> where U: core::convert::From<T>
  917. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::into(self) -> U
  918. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::hash_map::HashMap<K, V> where U: core::convert::Into<T>
  919. pub type aya_ebpf::maps::hash_map::HashMap<K, V>::Error = core::convert::Infallible
  920. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  921. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::hash_map::HashMap<K, V> where U: core::convert::TryFrom<T>
  922. pub type aya_ebpf::maps::hash_map::HashMap<K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  923. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  924. impl<T> core::any::Any for aya_ebpf::maps::hash_map::HashMap<K, V> where T: 'static + core::marker::Sized
  925. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::type_id(&self) -> core::any::TypeId
  926. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::hash_map::HashMap<K, V> where T: core::marker::Sized
  927. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::borrow(&self) -> &T
  928. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::hash_map::HashMap<K, V> where T: core::marker::Sized
  929. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::borrow_mut(&mut self) -> &mut T
  930. impl<T> core::convert::From<T> for aya_ebpf::maps::hash_map::HashMap<K, V>
  931. pub fn aya_ebpf::maps::hash_map::HashMap<K, V>::from(t: T) -> T
  932. #[repr(transparent)] pub struct aya_ebpf::maps::LpmTrie<K, V>
  933. impl<K, V> aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  934. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::get(&self, key: &aya_ebpf::maps::lpm_trie::Key<K>) -> core::option::Option<&V>
  935. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::insert(&self, key: &aya_ebpf::maps::lpm_trie::Key<K>, value: &V, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  936. pub const fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  937. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::remove(&self, key: &aya_ebpf::maps::lpm_trie::Key<K>) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  938. pub const fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  939. impl<K: core::marker::Sync, V: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  940. impl<K, V> !core::marker::Freeze for aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  941. impl<K, V> core::marker::Send for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where K: core::marker::Send, V: core::marker::Send
  942. impl<K, V> core::marker::Unpin for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where K: core::marker::Unpin, V: core::marker::Unpin
  943. impl<K, V> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  944. impl<K, V> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  945. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where U: core::convert::From<T>
  946. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::into(self) -> U
  947. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where U: core::convert::Into<T>
  948. pub type aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::Error = core::convert::Infallible
  949. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  950. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where U: core::convert::TryFrom<T>
  951. pub type aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  952. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  953. impl<T> core::any::Any for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where T: 'static + core::marker::Sized
  954. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::type_id(&self) -> core::any::TypeId
  955. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where T: core::marker::Sized
  956. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::borrow(&self) -> &T
  957. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::lpm_trie::LpmTrie<K, V> where T: core::marker::Sized
  958. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::borrow_mut(&mut self) -> &mut T
  959. impl<T> core::convert::From<T> for aya_ebpf::maps::lpm_trie::LpmTrie<K, V>
  960. pub fn aya_ebpf::maps::lpm_trie::LpmTrie<K, V>::from(t: T) -> T
  961. #[repr(transparent)] pub struct aya_ebpf::maps::LruHashMap<K, V>
  962. impl<K, V> aya_ebpf::maps::hash_map::LruHashMap<K, V>
  963. pub unsafe fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::get(&self, key: &K) -> core::option::Option<&V>
  964. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::get_ptr(&self, key: &K) -> core::option::Option<*const V>
  965. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V>
  966. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  967. pub const fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::LruHashMap<K, V>
  968. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::remove(&self, key: &K) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  969. pub const fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::LruHashMap<K, V>
  970. impl<K: core::marker::Sync, V: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::hash_map::LruHashMap<K, V>
  971. impl<K, V> !core::marker::Freeze for aya_ebpf::maps::hash_map::LruHashMap<K, V>
  972. impl<K, V> core::marker::Send for aya_ebpf::maps::hash_map::LruHashMap<K, V> where K: core::marker::Send, V: core::marker::Send
  973. impl<K, V> core::marker::Unpin for aya_ebpf::maps::hash_map::LruHashMap<K, V> where K: core::marker::Unpin, V: core::marker::Unpin
  974. impl<K, V> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::hash_map::LruHashMap<K, V>
  975. impl<K, V> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::hash_map::LruHashMap<K, V> where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  976. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::hash_map::LruHashMap<K, V> where U: core::convert::From<T>
  977. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::into(self) -> U
  978. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::hash_map::LruHashMap<K, V> where U: core::convert::Into<T>
  979. pub type aya_ebpf::maps::hash_map::LruHashMap<K, V>::Error = core::convert::Infallible
  980. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  981. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::hash_map::LruHashMap<K, V> where U: core::convert::TryFrom<T>
  982. pub type aya_ebpf::maps::hash_map::LruHashMap<K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  983. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  984. impl<T> core::any::Any for aya_ebpf::maps::hash_map::LruHashMap<K, V> where T: 'static + core::marker::Sized
  985. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::type_id(&self) -> core::any::TypeId
  986. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::hash_map::LruHashMap<K, V> where T: core::marker::Sized
  987. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::borrow(&self) -> &T
  988. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::hash_map::LruHashMap<K, V> where T: core::marker::Sized
  989. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::borrow_mut(&mut self) -> &mut T
  990. impl<T> core::convert::From<T> for aya_ebpf::maps::hash_map::LruHashMap<K, V>
  991. pub fn aya_ebpf::maps::hash_map::LruHashMap<K, V>::from(t: T) -> T
  992. #[repr(transparent)] pub struct aya_ebpf::maps::LruPerCpuHashMap<K, V>
  993. impl<K, V> aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  994. pub unsafe fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::get(&self, key: &K) -> core::option::Option<&V>
  995. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::get_ptr(&self, key: &K) -> core::option::Option<*const V>
  996. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V>
  997. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  998. pub const fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  999. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::remove(&self, key: &K) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1000. pub const fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  1001. impl<K, V> core::marker::Sync for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  1002. impl<K, V> !core::marker::Freeze for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  1003. impl<K, V> core::marker::Send for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where K: core::marker::Send, V: core::marker::Send
  1004. impl<K, V> core::marker::Unpin for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where K: core::marker::Unpin, V: core::marker::Unpin
  1005. impl<K, V> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  1006. impl<K, V> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1007. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where U: core::convert::From<T>
  1008. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::into(self) -> U
  1009. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where U: core::convert::Into<T>
  1010. pub type aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::Error = core::convert::Infallible
  1011. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1012. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where U: core::convert::TryFrom<T>
  1013. pub type aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1014. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1015. impl<T> core::any::Any for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where T: 'static + core::marker::Sized
  1016. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::type_id(&self) -> core::any::TypeId
  1017. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where T: core::marker::Sized
  1018. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::borrow(&self) -> &T
  1019. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V> where T: core::marker::Sized
  1020. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::borrow_mut(&mut self) -> &mut T
  1021. impl<T> core::convert::From<T> for aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>
  1022. pub fn aya_ebpf::maps::hash_map::LruPerCpuHashMap<K, V>::from(t: T) -> T
  1023. #[repr(transparent)] pub struct aya_ebpf::maps::PerCpuArray<T>
  1024. impl<T> aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  1025. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::get(&self, index: u32) -> core::option::Option<&T>
  1026. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::get_ptr(&self, index: u32) -> core::option::Option<*const T>
  1027. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::get_ptr_mut(&self, index: u32) -> core::option::Option<*mut T>
  1028. pub const fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  1029. pub const fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  1030. impl<T> core::marker::Sync for aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  1031. impl<T> !core::marker::Freeze for aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  1032. impl<T> core::marker::Send for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where T: core::marker::Send
  1033. impl<T> core::marker::Unpin for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where T: core::marker::Unpin
  1034. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  1035. impl<T> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where T: core::panic::unwind_safe::UnwindSafe
  1036. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where U: core::convert::From<T>
  1037. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::into(self) -> U
  1038. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where U: core::convert::Into<T>
  1039. pub type aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::Error = core::convert::Infallible
  1040. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1041. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where U: core::convert::TryFrom<T>
  1042. pub type aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1043. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1044. impl<T> core::any::Any for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where T: 'static + core::marker::Sized
  1045. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::type_id(&self) -> core::any::TypeId
  1046. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where T: core::marker::Sized
  1047. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::borrow(&self) -> &T
  1048. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::per_cpu_array::PerCpuArray<T> where T: core::marker::Sized
  1049. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::borrow_mut(&mut self) -> &mut T
  1050. impl<T> core::convert::From<T> for aya_ebpf::maps::per_cpu_array::PerCpuArray<T>
  1051. pub fn aya_ebpf::maps::per_cpu_array::PerCpuArray<T>::from(t: T) -> T
  1052. #[repr(transparent)] pub struct aya_ebpf::maps::PerCpuHashMap<K, V>
  1053. impl<K, V> aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  1054. pub unsafe fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::get(&self, key: &K) -> core::option::Option<&V>
  1055. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::get_ptr(&self, key: &K) -> core::option::Option<*const V>
  1056. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::get_ptr_mut(&self, key: &K) -> core::option::Option<*mut V>
  1057. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::insert(&self, key: &K, value: &V, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1058. pub const fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  1059. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::remove(&self, key: &K) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1060. pub const fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  1061. impl<K, V> core::marker::Sync for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  1062. impl<K, V> !core::marker::Freeze for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  1063. impl<K, V> core::marker::Send for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where K: core::marker::Send, V: core::marker::Send
  1064. impl<K, V> core::marker::Unpin for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where K: core::marker::Unpin, V: core::marker::Unpin
  1065. impl<K, V> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  1066. impl<K, V> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1067. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where U: core::convert::From<T>
  1068. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::into(self) -> U
  1069. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where U: core::convert::Into<T>
  1070. pub type aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::Error = core::convert::Infallible
  1071. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1072. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where U: core::convert::TryFrom<T>
  1073. pub type aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1074. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1075. impl<T> core::any::Any for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where T: 'static + core::marker::Sized
  1076. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::type_id(&self) -> core::any::TypeId
  1077. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where T: core::marker::Sized
  1078. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::borrow(&self) -> &T
  1079. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V> where T: core::marker::Sized
  1080. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::borrow_mut(&mut self) -> &mut T
  1081. impl<T> core::convert::From<T> for aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>
  1082. pub fn aya_ebpf::maps::hash_map::PerCpuHashMap<K, V>::from(t: T) -> T
  1083. #[repr(transparent)] pub struct aya_ebpf::maps::PerfEventArray<T>
  1084. impl<T> aya_ebpf::maps::PerfEventArray<T>
  1085. pub const fn aya_ebpf::maps::PerfEventArray<T>::new(flags: u32) -> aya_ebpf::maps::PerfEventArray<T>
  1086. pub fn aya_ebpf::maps::PerfEventArray<T>::output<C: aya_ebpf::EbpfContext>(&self, ctx: &C, data: &T, flags: u32)
  1087. pub fn aya_ebpf::maps::PerfEventArray<T>::output_at_index<C: aya_ebpf::EbpfContext>(&self, ctx: &C, index: u32, data: &T, flags: u32)
  1088. pub const fn aya_ebpf::maps::PerfEventArray<T>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::PerfEventArray<T>
  1089. pub const fn aya_ebpf::maps::PerfEventArray<T>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::PerfEventArray<T>
  1090. impl<T: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::PerfEventArray<T>
  1091. impl<T> !core::marker::Freeze for aya_ebpf::maps::PerfEventArray<T>
  1092. impl<T> core::marker::Send for aya_ebpf::maps::PerfEventArray<T> where T: core::marker::Send
  1093. impl<T> core::marker::Unpin for aya_ebpf::maps::PerfEventArray<T> where T: core::marker::Unpin
  1094. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::PerfEventArray<T>
  1095. impl<T> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::PerfEventArray<T> where T: core::panic::unwind_safe::UnwindSafe
  1096. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::PerfEventArray<T> where U: core::convert::From<T>
  1097. pub fn aya_ebpf::maps::PerfEventArray<T>::into(self) -> U
  1098. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::PerfEventArray<T> where U: core::convert::Into<T>
  1099. pub type aya_ebpf::maps::PerfEventArray<T>::Error = core::convert::Infallible
  1100. pub fn aya_ebpf::maps::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1101. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::PerfEventArray<T> where U: core::convert::TryFrom<T>
  1102. pub type aya_ebpf::maps::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1103. pub fn aya_ebpf::maps::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1104. impl<T> core::any::Any for aya_ebpf::maps::PerfEventArray<T> where T: 'static + core::marker::Sized
  1105. pub fn aya_ebpf::maps::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  1106. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::PerfEventArray<T> where T: core::marker::Sized
  1107. pub fn aya_ebpf::maps::PerfEventArray<T>::borrow(&self) -> &T
  1108. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::PerfEventArray<T> where T: core::marker::Sized
  1109. pub fn aya_ebpf::maps::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  1110. impl<T> core::convert::From<T> for aya_ebpf::maps::PerfEventArray<T>
  1111. pub fn aya_ebpf::maps::PerfEventArray<T>::from(t: T) -> T
  1112. #[repr(transparent)] pub struct aya_ebpf::maps::PerfEventByteArray
  1113. impl aya_ebpf::maps::PerfEventByteArray
  1114. pub const fn aya_ebpf::maps::PerfEventByteArray::new(flags: u32) -> aya_ebpf::maps::PerfEventByteArray
  1115. pub fn aya_ebpf::maps::PerfEventByteArray::output<C: aya_ebpf::EbpfContext>(&self, ctx: &C, data: &[u8], flags: u32)
  1116. pub fn aya_ebpf::maps::PerfEventByteArray::output_at_index<C: aya_ebpf::EbpfContext>(&self, ctx: &C, index: u32, data: &[u8], flags: u32)
  1117. pub const fn aya_ebpf::maps::PerfEventByteArray::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::PerfEventByteArray
  1118. pub const fn aya_ebpf::maps::PerfEventByteArray::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::PerfEventByteArray
  1119. impl core::marker::Sync for aya_ebpf::maps::PerfEventByteArray
  1120. impl !core::marker::Freeze for aya_ebpf::maps::PerfEventByteArray
  1121. impl core::marker::Send for aya_ebpf::maps::PerfEventByteArray
  1122. impl core::marker::Unpin for aya_ebpf::maps::PerfEventByteArray
  1123. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::PerfEventByteArray
  1124. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::PerfEventByteArray
  1125. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::PerfEventByteArray where U: core::convert::From<T>
  1126. pub fn aya_ebpf::maps::PerfEventByteArray::into(self) -> U
  1127. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::PerfEventByteArray where U: core::convert::Into<T>
  1128. pub type aya_ebpf::maps::PerfEventByteArray::Error = core::convert::Infallible
  1129. pub fn aya_ebpf::maps::PerfEventByteArray::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1130. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::PerfEventByteArray where U: core::convert::TryFrom<T>
  1131. pub type aya_ebpf::maps::PerfEventByteArray::Error = <U as core::convert::TryFrom<T>>::Error
  1132. pub fn aya_ebpf::maps::PerfEventByteArray::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1133. impl<T> core::any::Any for aya_ebpf::maps::PerfEventByteArray where T: 'static + core::marker::Sized
  1134. pub fn aya_ebpf::maps::PerfEventByteArray::type_id(&self) -> core::any::TypeId
  1135. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::PerfEventByteArray where T: core::marker::Sized
  1136. pub fn aya_ebpf::maps::PerfEventByteArray::borrow(&self) -> &T
  1137. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::PerfEventByteArray where T: core::marker::Sized
  1138. pub fn aya_ebpf::maps::PerfEventByteArray::borrow_mut(&mut self) -> &mut T
  1139. impl<T> core::convert::From<T> for aya_ebpf::maps::PerfEventByteArray
  1140. pub fn aya_ebpf::maps::PerfEventByteArray::from(t: T) -> T
  1141. #[repr(transparent)] pub struct aya_ebpf::maps::ProgramArray
  1142. impl aya_ebpf::maps::program_array::ProgramArray
  1143. pub const fn aya_ebpf::maps::program_array::ProgramArray::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::program_array::ProgramArray
  1144. pub unsafe fn aya_ebpf::maps::program_array::ProgramArray::tail_call<C: aya_ebpf::EbpfContext>(&self, ctx: &C, index: u32) -> core::result::Result<never, aya_ebpf_cty::od::c_long>
  1145. pub const fn aya_ebpf::maps::program_array::ProgramArray::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::program_array::ProgramArray
  1146. impl core::marker::Sync for aya_ebpf::maps::program_array::ProgramArray
  1147. impl !core::marker::Freeze for aya_ebpf::maps::program_array::ProgramArray
  1148. impl core::marker::Send for aya_ebpf::maps::program_array::ProgramArray
  1149. impl core::marker::Unpin for aya_ebpf::maps::program_array::ProgramArray
  1150. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::program_array::ProgramArray
  1151. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::program_array::ProgramArray
  1152. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::program_array::ProgramArray where U: core::convert::From<T>
  1153. pub fn aya_ebpf::maps::program_array::ProgramArray::into(self) -> U
  1154. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::program_array::ProgramArray where U: core::convert::Into<T>
  1155. pub type aya_ebpf::maps::program_array::ProgramArray::Error = core::convert::Infallible
  1156. pub fn aya_ebpf::maps::program_array::ProgramArray::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1157. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::program_array::ProgramArray where U: core::convert::TryFrom<T>
  1158. pub type aya_ebpf::maps::program_array::ProgramArray::Error = <U as core::convert::TryFrom<T>>::Error
  1159. pub fn aya_ebpf::maps::program_array::ProgramArray::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1160. impl<T> core::any::Any for aya_ebpf::maps::program_array::ProgramArray where T: 'static + core::marker::Sized
  1161. pub fn aya_ebpf::maps::program_array::ProgramArray::type_id(&self) -> core::any::TypeId
  1162. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::program_array::ProgramArray where T: core::marker::Sized
  1163. pub fn aya_ebpf::maps::program_array::ProgramArray::borrow(&self) -> &T
  1164. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::program_array::ProgramArray where T: core::marker::Sized
  1165. pub fn aya_ebpf::maps::program_array::ProgramArray::borrow_mut(&mut self) -> &mut T
  1166. impl<T> core::convert::From<T> for aya_ebpf::maps::program_array::ProgramArray
  1167. pub fn aya_ebpf::maps::program_array::ProgramArray::from(t: T) -> T
  1168. #[repr(transparent)] pub struct aya_ebpf::maps::Queue<T>
  1169. impl<T> aya_ebpf::maps::queue::Queue<T>
  1170. pub const fn aya_ebpf::maps::queue::Queue<T>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::queue::Queue<T>
  1171. pub fn aya_ebpf::maps::queue::Queue<T>::pop(&self) -> core::option::Option<T>
  1172. pub fn aya_ebpf::maps::queue::Queue<T>::push(&self, value: &T, flags: u64) -> core::result::Result<(), i64>
  1173. pub const fn aya_ebpf::maps::queue::Queue<T>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::queue::Queue<T>
  1174. impl<T: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::queue::Queue<T>
  1175. impl<T> !core::marker::Freeze for aya_ebpf::maps::queue::Queue<T>
  1176. impl<T> core::marker::Send for aya_ebpf::maps::queue::Queue<T> where T: core::marker::Send
  1177. impl<T> core::marker::Unpin for aya_ebpf::maps::queue::Queue<T> where T: core::marker::Unpin
  1178. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::queue::Queue<T>
  1179. impl<T> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::queue::Queue<T> where T: core::panic::unwind_safe::UnwindSafe
  1180. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::queue::Queue<T> where U: core::convert::From<T>
  1181. pub fn aya_ebpf::maps::queue::Queue<T>::into(self) -> U
  1182. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::queue::Queue<T> where U: core::convert::Into<T>
  1183. pub type aya_ebpf::maps::queue::Queue<T>::Error = core::convert::Infallible
  1184. pub fn aya_ebpf::maps::queue::Queue<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1185. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::queue::Queue<T> where U: core::convert::TryFrom<T>
  1186. pub type aya_ebpf::maps::queue::Queue<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1187. pub fn aya_ebpf::maps::queue::Queue<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1188. impl<T> core::any::Any for aya_ebpf::maps::queue::Queue<T> where T: 'static + core::marker::Sized
  1189. pub fn aya_ebpf::maps::queue::Queue<T>::type_id(&self) -> core::any::TypeId
  1190. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::queue::Queue<T> where T: core::marker::Sized
  1191. pub fn aya_ebpf::maps::queue::Queue<T>::borrow(&self) -> &T
  1192. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::queue::Queue<T> where T: core::marker::Sized
  1193. pub fn aya_ebpf::maps::queue::Queue<T>::borrow_mut(&mut self) -> &mut T
  1194. impl<T> core::convert::From<T> for aya_ebpf::maps::queue::Queue<T>
  1195. pub fn aya_ebpf::maps::queue::Queue<T>::from(t: T) -> T
  1196. #[repr(transparent)] pub struct aya_ebpf::maps::RingBuf
  1197. impl aya_ebpf::maps::ring_buf::RingBuf
  1198. pub fn aya_ebpf::maps::ring_buf::RingBuf::output<T: core::marker::Sized>(&self, data: &T, flags: u64) -> core::result::Result<(), i64>
  1199. pub const fn aya_ebpf::maps::ring_buf::RingBuf::pinned(byte_size: u32, flags: u32) -> Self
  1200. pub fn aya_ebpf::maps::ring_buf::RingBuf::query(&self, flags: u64) -> u64
  1201. pub fn aya_ebpf::maps::ring_buf::RingBuf::reserve<T: 'static>(&self, flags: u64) -> core::option::Option<aya_ebpf::maps::ring_buf::RingBufEntry<T>> where const_assert::Assert<>: const_assert::IsTrue
  1202. pub const fn aya_ebpf::maps::ring_buf::RingBuf::with_byte_size(byte_size: u32, flags: u32) -> Self
  1203. impl core::marker::Sync for aya_ebpf::maps::ring_buf::RingBuf
  1204. impl !core::marker::Freeze for aya_ebpf::maps::ring_buf::RingBuf
  1205. impl core::marker::Send for aya_ebpf::maps::ring_buf::RingBuf
  1206. impl core::marker::Unpin for aya_ebpf::maps::ring_buf::RingBuf
  1207. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::ring_buf::RingBuf
  1208. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::ring_buf::RingBuf
  1209. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::ring_buf::RingBuf where U: core::convert::From<T>
  1210. pub fn aya_ebpf::maps::ring_buf::RingBuf::into(self) -> U
  1211. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::ring_buf::RingBuf where U: core::convert::Into<T>
  1212. pub type aya_ebpf::maps::ring_buf::RingBuf::Error = core::convert::Infallible
  1213. pub fn aya_ebpf::maps::ring_buf::RingBuf::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1214. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::ring_buf::RingBuf where U: core::convert::TryFrom<T>
  1215. pub type aya_ebpf::maps::ring_buf::RingBuf::Error = <U as core::convert::TryFrom<T>>::Error
  1216. pub fn aya_ebpf::maps::ring_buf::RingBuf::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1217. impl<T> core::any::Any for aya_ebpf::maps::ring_buf::RingBuf where T: 'static + core::marker::Sized
  1218. pub fn aya_ebpf::maps::ring_buf::RingBuf::type_id(&self) -> core::any::TypeId
  1219. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::ring_buf::RingBuf where T: core::marker::Sized
  1220. pub fn aya_ebpf::maps::ring_buf::RingBuf::borrow(&self) -> &T
  1221. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::ring_buf::RingBuf where T: core::marker::Sized
  1222. pub fn aya_ebpf::maps::ring_buf::RingBuf::borrow_mut(&mut self) -> &mut T
  1223. impl<T> core::convert::From<T> for aya_ebpf::maps::ring_buf::RingBuf
  1224. pub fn aya_ebpf::maps::ring_buf::RingBuf::from(t: T) -> T
  1225. #[repr(transparent)] pub struct aya_ebpf::maps::SockHash<K>
  1226. impl<K> aya_ebpf::maps::sock_hash::SockHash<K>
  1227. pub const fn aya_ebpf::maps::sock_hash::SockHash<K>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::sock_hash::SockHash<K>
  1228. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::redirect_msg(&self, ctx: &aya_ebpf::programs::sk_msg::SkMsgContext, key: &mut K, flags: u64) -> i64
  1229. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::redirect_sk_lookup(&mut self, ctx: &aya_ebpf::programs::sk_lookup::SkLookupContext, key: impl core::borrow::Borrow<K>, flags: u64) -> core::result::Result<(), u32>
  1230. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::redirect_skb(&self, ctx: &aya_ebpf::programs::sk_buff::SkBuffContext, key: &mut K, flags: u64) -> i64
  1231. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::update(&self, key: &mut K, sk_ops: &mut aya_ebpf_bindings::x86_64::bindings::bpf_sock_ops, flags: u64) -> core::result::Result<(), i64>
  1232. pub const fn aya_ebpf::maps::sock_hash::SockHash<K>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::sock_hash::SockHash<K>
  1233. impl<K: core::marker::Sync> core::marker::Sync for aya_ebpf::maps::sock_hash::SockHash<K>
  1234. impl<K> !core::marker::Freeze for aya_ebpf::maps::sock_hash::SockHash<K>
  1235. impl<K> core::marker::Send for aya_ebpf::maps::sock_hash::SockHash<K> where K: core::marker::Send
  1236. impl<K> core::marker::Unpin for aya_ebpf::maps::sock_hash::SockHash<K> where K: core::marker::Unpin
  1237. impl<K> !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::sock_hash::SockHash<K>
  1238. impl<K> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::sock_hash::SockHash<K> where K: core::panic::unwind_safe::UnwindSafe
  1239. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::sock_hash::SockHash<K> where U: core::convert::From<T>
  1240. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::into(self) -> U
  1241. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::sock_hash::SockHash<K> where U: core::convert::Into<T>
  1242. pub type aya_ebpf::maps::sock_hash::SockHash<K>::Error = core::convert::Infallible
  1243. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1244. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::sock_hash::SockHash<K> where U: core::convert::TryFrom<T>
  1245. pub type aya_ebpf::maps::sock_hash::SockHash<K>::Error = <U as core::convert::TryFrom<T>>::Error
  1246. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1247. impl<T> core::any::Any for aya_ebpf::maps::sock_hash::SockHash<K> where T: 'static + core::marker::Sized
  1248. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::type_id(&self) -> core::any::TypeId
  1249. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::sock_hash::SockHash<K> where T: core::marker::Sized
  1250. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::borrow(&self) -> &T
  1251. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::sock_hash::SockHash<K> where T: core::marker::Sized
  1252. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::borrow_mut(&mut self) -> &mut T
  1253. impl<T> core::convert::From<T> for aya_ebpf::maps::sock_hash::SockHash<K>
  1254. pub fn aya_ebpf::maps::sock_hash::SockHash<K>::from(t: T) -> T
  1255. #[repr(transparent)] pub struct aya_ebpf::maps::SockMap
  1256. impl aya_ebpf::maps::sock_map::SockMap
  1257. pub const fn aya_ebpf::maps::sock_map::SockMap::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::sock_map::SockMap
  1258. pub unsafe fn aya_ebpf::maps::sock_map::SockMap::redirect_msg(&self, ctx: &aya_ebpf::programs::sk_msg::SkMsgContext, index: u32, flags: u64) -> i64
  1259. pub fn aya_ebpf::maps::sock_map::SockMap::redirect_sk_lookup(&mut self, ctx: &aya_ebpf::programs::sk_lookup::SkLookupContext, index: u32, flags: u64) -> core::result::Result<(), u32>
  1260. pub unsafe fn aya_ebpf::maps::sock_map::SockMap::redirect_skb(&self, ctx: &aya_ebpf::programs::sk_buff::SkBuffContext, index: u32, flags: u64) -> i64
  1261. pub unsafe fn aya_ebpf::maps::sock_map::SockMap::update(&self, index: u32, sk_ops: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock_ops, flags: u64) -> core::result::Result<(), i64>
  1262. pub const fn aya_ebpf::maps::sock_map::SockMap::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::sock_map::SockMap
  1263. impl core::marker::Sync for aya_ebpf::maps::sock_map::SockMap
  1264. impl !core::marker::Freeze for aya_ebpf::maps::sock_map::SockMap
  1265. impl core::marker::Send for aya_ebpf::maps::sock_map::SockMap
  1266. impl core::marker::Unpin for aya_ebpf::maps::sock_map::SockMap
  1267. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::sock_map::SockMap
  1268. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::sock_map::SockMap
  1269. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::sock_map::SockMap where U: core::convert::From<T>
  1270. pub fn aya_ebpf::maps::sock_map::SockMap::into(self) -> U
  1271. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::sock_map::SockMap where U: core::convert::Into<T>
  1272. pub type aya_ebpf::maps::sock_map::SockMap::Error = core::convert::Infallible
  1273. pub fn aya_ebpf::maps::sock_map::SockMap::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1274. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::sock_map::SockMap where U: core::convert::TryFrom<T>
  1275. pub type aya_ebpf::maps::sock_map::SockMap::Error = <U as core::convert::TryFrom<T>>::Error
  1276. pub fn aya_ebpf::maps::sock_map::SockMap::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1277. impl<T> core::any::Any for aya_ebpf::maps::sock_map::SockMap where T: 'static + core::marker::Sized
  1278. pub fn aya_ebpf::maps::sock_map::SockMap::type_id(&self) -> core::any::TypeId
  1279. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::sock_map::SockMap where T: core::marker::Sized
  1280. pub fn aya_ebpf::maps::sock_map::SockMap::borrow(&self) -> &T
  1281. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::sock_map::SockMap where T: core::marker::Sized
  1282. pub fn aya_ebpf::maps::sock_map::SockMap::borrow_mut(&mut self) -> &mut T
  1283. impl<T> core::convert::From<T> for aya_ebpf::maps::sock_map::SockMap
  1284. pub fn aya_ebpf::maps::sock_map::SockMap::from(t: T) -> T
  1285. #[repr(transparent)] pub struct aya_ebpf::maps::Stack<T>
  1286. impl<T> aya_ebpf::maps::stack::Stack<T>
  1287. pub const fn aya_ebpf::maps::stack::Stack<T>::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::stack::Stack<T>
  1288. pub fn aya_ebpf::maps::stack::Stack<T>::pop(&mut self) -> core::option::Option<T>
  1289. pub fn aya_ebpf::maps::stack::Stack<T>::push(&mut self, value: &T, flags: u64) -> core::result::Result<(), i64>
  1290. pub const fn aya_ebpf::maps::stack::Stack<T>::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::stack::Stack<T>
  1291. impl<T> core::marker::Freeze for aya_ebpf::maps::stack::Stack<T>
  1292. impl<T> core::marker::Send for aya_ebpf::maps::stack::Stack<T> where T: core::marker::Send
  1293. impl<T> core::marker::Sync for aya_ebpf::maps::stack::Stack<T> where T: core::marker::Sync
  1294. impl<T> core::marker::Unpin for aya_ebpf::maps::stack::Stack<T> where T: core::marker::Unpin
  1295. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::stack::Stack<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1296. impl<T> core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::stack::Stack<T> where T: core::panic::unwind_safe::UnwindSafe
  1297. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::stack::Stack<T> where U: core::convert::From<T>
  1298. pub fn aya_ebpf::maps::stack::Stack<T>::into(self) -> U
  1299. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::stack::Stack<T> where U: core::convert::Into<T>
  1300. pub type aya_ebpf::maps::stack::Stack<T>::Error = core::convert::Infallible
  1301. pub fn aya_ebpf::maps::stack::Stack<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1302. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::stack::Stack<T> where U: core::convert::TryFrom<T>
  1303. pub type aya_ebpf::maps::stack::Stack<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1304. pub fn aya_ebpf::maps::stack::Stack<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1305. impl<T> core::any::Any for aya_ebpf::maps::stack::Stack<T> where T: 'static + core::marker::Sized
  1306. pub fn aya_ebpf::maps::stack::Stack<T>::type_id(&self) -> core::any::TypeId
  1307. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::stack::Stack<T> where T: core::marker::Sized
  1308. pub fn aya_ebpf::maps::stack::Stack<T>::borrow(&self) -> &T
  1309. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::stack::Stack<T> where T: core::marker::Sized
  1310. pub fn aya_ebpf::maps::stack::Stack<T>::borrow_mut(&mut self) -> &mut T
  1311. impl<T> core::convert::From<T> for aya_ebpf::maps::stack::Stack<T>
  1312. pub fn aya_ebpf::maps::stack::Stack<T>::from(t: T) -> T
  1313. #[repr(transparent)] pub struct aya_ebpf::maps::StackTrace
  1314. impl aya_ebpf::maps::stack_trace::StackTrace
  1315. pub unsafe fn aya_ebpf::maps::stack_trace::StackTrace::get_stackid<C: aya_ebpf::EbpfContext>(&self, ctx: &C, flags: u64) -> core::result::Result<i64, i64>
  1316. pub const fn aya_ebpf::maps::stack_trace::StackTrace::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::stack_trace::StackTrace
  1317. pub const fn aya_ebpf::maps::stack_trace::StackTrace::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::stack_trace::StackTrace
  1318. impl core::marker::Sync for aya_ebpf::maps::stack_trace::StackTrace
  1319. impl !core::marker::Freeze for aya_ebpf::maps::stack_trace::StackTrace
  1320. impl core::marker::Send for aya_ebpf::maps::stack_trace::StackTrace
  1321. impl core::marker::Unpin for aya_ebpf::maps::stack_trace::StackTrace
  1322. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::stack_trace::StackTrace
  1323. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::stack_trace::StackTrace
  1324. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::stack_trace::StackTrace where U: core::convert::From<T>
  1325. pub fn aya_ebpf::maps::stack_trace::StackTrace::into(self) -> U
  1326. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::stack_trace::StackTrace where U: core::convert::Into<T>
  1327. pub type aya_ebpf::maps::stack_trace::StackTrace::Error = core::convert::Infallible
  1328. pub fn aya_ebpf::maps::stack_trace::StackTrace::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1329. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::stack_trace::StackTrace where U: core::convert::TryFrom<T>
  1330. pub type aya_ebpf::maps::stack_trace::StackTrace::Error = <U as core::convert::TryFrom<T>>::Error
  1331. pub fn aya_ebpf::maps::stack_trace::StackTrace::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1332. impl<T> core::any::Any for aya_ebpf::maps::stack_trace::StackTrace where T: 'static + core::marker::Sized
  1333. pub fn aya_ebpf::maps::stack_trace::StackTrace::type_id(&self) -> core::any::TypeId
  1334. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::stack_trace::StackTrace where T: core::marker::Sized
  1335. pub fn aya_ebpf::maps::stack_trace::StackTrace::borrow(&self) -> &T
  1336. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::stack_trace::StackTrace where T: core::marker::Sized
  1337. pub fn aya_ebpf::maps::stack_trace::StackTrace::borrow_mut(&mut self) -> &mut T
  1338. impl<T> core::convert::From<T> for aya_ebpf::maps::stack_trace::StackTrace
  1339. pub fn aya_ebpf::maps::stack_trace::StackTrace::from(t: T) -> T
  1340. #[repr(transparent)] pub struct aya_ebpf::maps::XskMap
  1341. impl aya_ebpf::maps::XskMap
  1342. pub fn aya_ebpf::maps::XskMap::get(&self, index: u32) -> core::option::Option<u32>
  1343. pub const fn aya_ebpf::maps::XskMap::pinned(max_entries: u32, flags: u32) -> aya_ebpf::maps::XskMap
  1344. pub fn aya_ebpf::maps::XskMap::redirect(&self, index: u32, flags: u64) -> core::result::Result<u32, u32>
  1345. pub const fn aya_ebpf::maps::XskMap::with_max_entries(max_entries: u32, flags: u32) -> aya_ebpf::maps::XskMap
  1346. impl core::marker::Sync for aya_ebpf::maps::XskMap
  1347. impl !core::marker::Freeze for aya_ebpf::maps::XskMap
  1348. impl core::marker::Send for aya_ebpf::maps::XskMap
  1349. impl core::marker::Unpin for aya_ebpf::maps::XskMap
  1350. impl !core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::maps::XskMap
  1351. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::maps::XskMap
  1352. impl<T, U> core::convert::Into<U> for aya_ebpf::maps::XskMap where U: core::convert::From<T>
  1353. pub fn aya_ebpf::maps::XskMap::into(self) -> U
  1354. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::maps::XskMap where U: core::convert::Into<T>
  1355. pub type aya_ebpf::maps::XskMap::Error = core::convert::Infallible
  1356. pub fn aya_ebpf::maps::XskMap::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1357. impl<T, U> core::convert::TryInto<U> for aya_ebpf::maps::XskMap where U: core::convert::TryFrom<T>
  1358. pub type aya_ebpf::maps::XskMap::Error = <U as core::convert::TryFrom<T>>::Error
  1359. pub fn aya_ebpf::maps::XskMap::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1360. impl<T> core::any::Any for aya_ebpf::maps::XskMap where T: 'static + core::marker::Sized
  1361. pub fn aya_ebpf::maps::XskMap::type_id(&self) -> core::any::TypeId
  1362. impl<T> core::borrow::Borrow<T> for aya_ebpf::maps::XskMap where T: core::marker::Sized
  1363. pub fn aya_ebpf::maps::XskMap::borrow(&self) -> &T
  1364. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::maps::XskMap where T: core::marker::Sized
  1365. pub fn aya_ebpf::maps::XskMap::borrow_mut(&mut self) -> &mut T
  1366. impl<T> core::convert::From<T> for aya_ebpf::maps::XskMap
  1367. pub fn aya_ebpf::maps::XskMap::from(t: T) -> T
  1368. pub mod aya_ebpf::programs
  1369. pub mod aya_ebpf::programs::device
  1370. pub struct aya_ebpf::programs::device::DeviceContext
  1371. pub aya_ebpf::programs::device::DeviceContext::device: *mut aya_ebpf_bindings::x86_64::bindings::bpf_cgroup_dev_ctx
  1372. impl aya_ebpf::programs::device::DeviceContext
  1373. pub fn aya_ebpf::programs::device::DeviceContext::new(device: *mut aya_ebpf_bindings::x86_64::bindings::bpf_cgroup_dev_ctx) -> aya_ebpf::programs::device::DeviceContext
  1374. impl aya_ebpf::EbpfContext for aya_ebpf::programs::device::DeviceContext
  1375. pub fn aya_ebpf::programs::device::DeviceContext::as_ptr(&self) -> *mut core::ffi::c_void
  1376. impl core::marker::Freeze for aya_ebpf::programs::device::DeviceContext
  1377. impl !core::marker::Send for aya_ebpf::programs::device::DeviceContext
  1378. impl !core::marker::Sync for aya_ebpf::programs::device::DeviceContext
  1379. impl core::marker::Unpin for aya_ebpf::programs::device::DeviceContext
  1380. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::device::DeviceContext
  1381. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::device::DeviceContext
  1382. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::device::DeviceContext where U: core::convert::From<T>
  1383. pub fn aya_ebpf::programs::device::DeviceContext::into(self) -> U
  1384. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::device::DeviceContext where U: core::convert::Into<T>
  1385. pub type aya_ebpf::programs::device::DeviceContext::Error = core::convert::Infallible
  1386. pub fn aya_ebpf::programs::device::DeviceContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1387. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::device::DeviceContext where U: core::convert::TryFrom<T>
  1388. pub type aya_ebpf::programs::device::DeviceContext::Error = <U as core::convert::TryFrom<T>>::Error
  1389. pub fn aya_ebpf::programs::device::DeviceContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1390. impl<T> core::any::Any for aya_ebpf::programs::device::DeviceContext where T: 'static + core::marker::Sized
  1391. pub fn aya_ebpf::programs::device::DeviceContext::type_id(&self) -> core::any::TypeId
  1392. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::device::DeviceContext where T: core::marker::Sized
  1393. pub fn aya_ebpf::programs::device::DeviceContext::borrow(&self) -> &T
  1394. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::device::DeviceContext where T: core::marker::Sized
  1395. pub fn aya_ebpf::programs::device::DeviceContext::borrow_mut(&mut self) -> &mut T
  1396. impl<T> core::convert::From<T> for aya_ebpf::programs::device::DeviceContext
  1397. pub fn aya_ebpf::programs::device::DeviceContext::from(t: T) -> T
  1398. pub mod aya_ebpf::programs::fentry
  1399. pub struct aya_ebpf::programs::fentry::FEntryContext
  1400. impl aya_ebpf::programs::fentry::FEntryContext
  1401. pub unsafe fn aya_ebpf::programs::fentry::FEntryContext::arg<T: FromBtfArgument>(&self, n: usize) -> T
  1402. pub fn aya_ebpf::programs::fentry::FEntryContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::fentry::FEntryContext
  1403. impl aya_ebpf::EbpfContext for aya_ebpf::programs::fentry::FEntryContext
  1404. pub fn aya_ebpf::programs::fentry::FEntryContext::as_ptr(&self) -> *mut core::ffi::c_void
  1405. impl core::marker::Freeze for aya_ebpf::programs::fentry::FEntryContext
  1406. impl !core::marker::Send for aya_ebpf::programs::fentry::FEntryContext
  1407. impl !core::marker::Sync for aya_ebpf::programs::fentry::FEntryContext
  1408. impl core::marker::Unpin for aya_ebpf::programs::fentry::FEntryContext
  1409. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::fentry::FEntryContext
  1410. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::fentry::FEntryContext
  1411. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::fentry::FEntryContext where U: core::convert::From<T>
  1412. pub fn aya_ebpf::programs::fentry::FEntryContext::into(self) -> U
  1413. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::fentry::FEntryContext where U: core::convert::Into<T>
  1414. pub type aya_ebpf::programs::fentry::FEntryContext::Error = core::convert::Infallible
  1415. pub fn aya_ebpf::programs::fentry::FEntryContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1416. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::fentry::FEntryContext where U: core::convert::TryFrom<T>
  1417. pub type aya_ebpf::programs::fentry::FEntryContext::Error = <U as core::convert::TryFrom<T>>::Error
  1418. pub fn aya_ebpf::programs::fentry::FEntryContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1419. impl<T> core::any::Any for aya_ebpf::programs::fentry::FEntryContext where T: 'static + core::marker::Sized
  1420. pub fn aya_ebpf::programs::fentry::FEntryContext::type_id(&self) -> core::any::TypeId
  1421. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::fentry::FEntryContext where T: core::marker::Sized
  1422. pub fn aya_ebpf::programs::fentry::FEntryContext::borrow(&self) -> &T
  1423. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::fentry::FEntryContext where T: core::marker::Sized
  1424. pub fn aya_ebpf::programs::fentry::FEntryContext::borrow_mut(&mut self) -> &mut T
  1425. impl<T> core::convert::From<T> for aya_ebpf::programs::fentry::FEntryContext
  1426. pub fn aya_ebpf::programs::fentry::FEntryContext::from(t: T) -> T
  1427. pub mod aya_ebpf::programs::fexit
  1428. pub struct aya_ebpf::programs::fexit::FExitContext
  1429. impl aya_ebpf::programs::fexit::FExitContext
  1430. pub unsafe fn aya_ebpf::programs::fexit::FExitContext::arg<T: FromBtfArgument>(&self, n: usize) -> T
  1431. pub fn aya_ebpf::programs::fexit::FExitContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::fexit::FExitContext
  1432. impl aya_ebpf::EbpfContext for aya_ebpf::programs::fexit::FExitContext
  1433. pub fn aya_ebpf::programs::fexit::FExitContext::as_ptr(&self) -> *mut core::ffi::c_void
  1434. impl core::marker::Freeze for aya_ebpf::programs::fexit::FExitContext
  1435. impl !core::marker::Send for aya_ebpf::programs::fexit::FExitContext
  1436. impl !core::marker::Sync for aya_ebpf::programs::fexit::FExitContext
  1437. impl core::marker::Unpin for aya_ebpf::programs::fexit::FExitContext
  1438. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::fexit::FExitContext
  1439. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::fexit::FExitContext
  1440. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::fexit::FExitContext where U: core::convert::From<T>
  1441. pub fn aya_ebpf::programs::fexit::FExitContext::into(self) -> U
  1442. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::fexit::FExitContext where U: core::convert::Into<T>
  1443. pub type aya_ebpf::programs::fexit::FExitContext::Error = core::convert::Infallible
  1444. pub fn aya_ebpf::programs::fexit::FExitContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1445. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::fexit::FExitContext where U: core::convert::TryFrom<T>
  1446. pub type aya_ebpf::programs::fexit::FExitContext::Error = <U as core::convert::TryFrom<T>>::Error
  1447. pub fn aya_ebpf::programs::fexit::FExitContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1448. impl<T> core::any::Any for aya_ebpf::programs::fexit::FExitContext where T: 'static + core::marker::Sized
  1449. pub fn aya_ebpf::programs::fexit::FExitContext::type_id(&self) -> core::any::TypeId
  1450. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::fexit::FExitContext where T: core::marker::Sized
  1451. pub fn aya_ebpf::programs::fexit::FExitContext::borrow(&self) -> &T
  1452. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::fexit::FExitContext where T: core::marker::Sized
  1453. pub fn aya_ebpf::programs::fexit::FExitContext::borrow_mut(&mut self) -> &mut T
  1454. impl<T> core::convert::From<T> for aya_ebpf::programs::fexit::FExitContext
  1455. pub fn aya_ebpf::programs::fexit::FExitContext::from(t: T) -> T
  1456. pub mod aya_ebpf::programs::lsm
  1457. pub struct aya_ebpf::programs::lsm::LsmContext
  1458. impl aya_ebpf::programs::lsm::LsmContext
  1459. pub unsafe fn aya_ebpf::programs::lsm::LsmContext::arg<T: FromBtfArgument>(&self, n: usize) -> T
  1460. pub fn aya_ebpf::programs::lsm::LsmContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::lsm::LsmContext
  1461. impl aya_ebpf::EbpfContext for aya_ebpf::programs::lsm::LsmContext
  1462. pub fn aya_ebpf::programs::lsm::LsmContext::as_ptr(&self) -> *mut core::ffi::c_void
  1463. impl core::marker::Freeze for aya_ebpf::programs::lsm::LsmContext
  1464. impl !core::marker::Send for aya_ebpf::programs::lsm::LsmContext
  1465. impl !core::marker::Sync for aya_ebpf::programs::lsm::LsmContext
  1466. impl core::marker::Unpin for aya_ebpf::programs::lsm::LsmContext
  1467. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::lsm::LsmContext
  1468. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::lsm::LsmContext
  1469. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::lsm::LsmContext where U: core::convert::From<T>
  1470. pub fn aya_ebpf::programs::lsm::LsmContext::into(self) -> U
  1471. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::lsm::LsmContext where U: core::convert::Into<T>
  1472. pub type aya_ebpf::programs::lsm::LsmContext::Error = core::convert::Infallible
  1473. pub fn aya_ebpf::programs::lsm::LsmContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1474. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::lsm::LsmContext where U: core::convert::TryFrom<T>
  1475. pub type aya_ebpf::programs::lsm::LsmContext::Error = <U as core::convert::TryFrom<T>>::Error
  1476. pub fn aya_ebpf::programs::lsm::LsmContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1477. impl<T> core::any::Any for aya_ebpf::programs::lsm::LsmContext where T: 'static + core::marker::Sized
  1478. pub fn aya_ebpf::programs::lsm::LsmContext::type_id(&self) -> core::any::TypeId
  1479. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::lsm::LsmContext where T: core::marker::Sized
  1480. pub fn aya_ebpf::programs::lsm::LsmContext::borrow(&self) -> &T
  1481. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::lsm::LsmContext where T: core::marker::Sized
  1482. pub fn aya_ebpf::programs::lsm::LsmContext::borrow_mut(&mut self) -> &mut T
  1483. impl<T> core::convert::From<T> for aya_ebpf::programs::lsm::LsmContext
  1484. pub fn aya_ebpf::programs::lsm::LsmContext::from(t: T) -> T
  1485. pub mod aya_ebpf::programs::perf_event
  1486. pub struct aya_ebpf::programs::perf_event::PerfEventContext
  1487. impl aya_ebpf::programs::perf_event::PerfEventContext
  1488. pub fn aya_ebpf::programs::perf_event::PerfEventContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::perf_event::PerfEventContext
  1489. impl aya_ebpf::EbpfContext for aya_ebpf::programs::perf_event::PerfEventContext
  1490. pub fn aya_ebpf::programs::perf_event::PerfEventContext::as_ptr(&self) -> *mut core::ffi::c_void
  1491. impl core::marker::Freeze for aya_ebpf::programs::perf_event::PerfEventContext
  1492. impl !core::marker::Send for aya_ebpf::programs::perf_event::PerfEventContext
  1493. impl !core::marker::Sync for aya_ebpf::programs::perf_event::PerfEventContext
  1494. impl core::marker::Unpin for aya_ebpf::programs::perf_event::PerfEventContext
  1495. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::perf_event::PerfEventContext
  1496. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::perf_event::PerfEventContext
  1497. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::perf_event::PerfEventContext where U: core::convert::From<T>
  1498. pub fn aya_ebpf::programs::perf_event::PerfEventContext::into(self) -> U
  1499. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::perf_event::PerfEventContext where U: core::convert::Into<T>
  1500. pub type aya_ebpf::programs::perf_event::PerfEventContext::Error = core::convert::Infallible
  1501. pub fn aya_ebpf::programs::perf_event::PerfEventContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1502. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::perf_event::PerfEventContext where U: core::convert::TryFrom<T>
  1503. pub type aya_ebpf::programs::perf_event::PerfEventContext::Error = <U as core::convert::TryFrom<T>>::Error
  1504. pub fn aya_ebpf::programs::perf_event::PerfEventContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1505. impl<T> core::any::Any for aya_ebpf::programs::perf_event::PerfEventContext where T: 'static + core::marker::Sized
  1506. pub fn aya_ebpf::programs::perf_event::PerfEventContext::type_id(&self) -> core::any::TypeId
  1507. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::perf_event::PerfEventContext where T: core::marker::Sized
  1508. pub fn aya_ebpf::programs::perf_event::PerfEventContext::borrow(&self) -> &T
  1509. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::perf_event::PerfEventContext where T: core::marker::Sized
  1510. pub fn aya_ebpf::programs::perf_event::PerfEventContext::borrow_mut(&mut self) -> &mut T
  1511. impl<T> core::convert::From<T> for aya_ebpf::programs::perf_event::PerfEventContext
  1512. pub fn aya_ebpf::programs::perf_event::PerfEventContext::from(t: T) -> T
  1513. pub mod aya_ebpf::programs::probe
  1514. pub struct aya_ebpf::programs::probe::ProbeContext
  1515. pub aya_ebpf::programs::probe::ProbeContext::regs: *mut aya_ebpf_bindings::x86_64::bindings::pt_regs
  1516. impl aya_ebpf::programs::probe::ProbeContext
  1517. pub fn aya_ebpf::programs::probe::ProbeContext::arg<T: FromPtRegs>(&self, n: usize) -> core::option::Option<T>
  1518. pub fn aya_ebpf::programs::probe::ProbeContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::probe::ProbeContext
  1519. impl aya_ebpf::EbpfContext for aya_ebpf::programs::probe::ProbeContext
  1520. pub fn aya_ebpf::programs::probe::ProbeContext::as_ptr(&self) -> *mut core::ffi::c_void
  1521. impl core::marker::Freeze for aya_ebpf::programs::probe::ProbeContext
  1522. impl !core::marker::Send for aya_ebpf::programs::probe::ProbeContext
  1523. impl !core::marker::Sync for aya_ebpf::programs::probe::ProbeContext
  1524. impl core::marker::Unpin for aya_ebpf::programs::probe::ProbeContext
  1525. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::probe::ProbeContext
  1526. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::probe::ProbeContext
  1527. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::probe::ProbeContext where U: core::convert::From<T>
  1528. pub fn aya_ebpf::programs::probe::ProbeContext::into(self) -> U
  1529. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::probe::ProbeContext where U: core::convert::Into<T>
  1530. pub type aya_ebpf::programs::probe::ProbeContext::Error = core::convert::Infallible
  1531. pub fn aya_ebpf::programs::probe::ProbeContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1532. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::probe::ProbeContext where U: core::convert::TryFrom<T>
  1533. pub type aya_ebpf::programs::probe::ProbeContext::Error = <U as core::convert::TryFrom<T>>::Error
  1534. pub fn aya_ebpf::programs::probe::ProbeContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1535. impl<T> core::any::Any for aya_ebpf::programs::probe::ProbeContext where T: 'static + core::marker::Sized
  1536. pub fn aya_ebpf::programs::probe::ProbeContext::type_id(&self) -> core::any::TypeId
  1537. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::probe::ProbeContext where T: core::marker::Sized
  1538. pub fn aya_ebpf::programs::probe::ProbeContext::borrow(&self) -> &T
  1539. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::probe::ProbeContext where T: core::marker::Sized
  1540. pub fn aya_ebpf::programs::probe::ProbeContext::borrow_mut(&mut self) -> &mut T
  1541. impl<T> core::convert::From<T> for aya_ebpf::programs::probe::ProbeContext
  1542. pub fn aya_ebpf::programs::probe::ProbeContext::from(t: T) -> T
  1543. pub mod aya_ebpf::programs::raw_tracepoint
  1544. pub struct aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  1545. impl aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  1546. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  1547. impl aya_ebpf::EbpfContext for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  1548. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::as_ptr(&self) -> *mut core::ffi::c_void
  1549. impl core::marker::Freeze for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  1550. impl !core::marker::Send for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  1551. impl !core::marker::Sync for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  1552. impl core::marker::Unpin for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  1553. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  1554. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  1555. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::raw_tracepoint::RawTracePointContext where U: core::convert::From<T>
  1556. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::into(self) -> U
  1557. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::raw_tracepoint::RawTracePointContext where U: core::convert::Into<T>
  1558. pub type aya_ebpf::programs::raw_tracepoint::RawTracePointContext::Error = core::convert::Infallible
  1559. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1560. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::raw_tracepoint::RawTracePointContext where U: core::convert::TryFrom<T>
  1561. pub type aya_ebpf::programs::raw_tracepoint::RawTracePointContext::Error = <U as core::convert::TryFrom<T>>::Error
  1562. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1563. impl<T> core::any::Any for aya_ebpf::programs::raw_tracepoint::RawTracePointContext where T: 'static + core::marker::Sized
  1564. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::type_id(&self) -> core::any::TypeId
  1565. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::raw_tracepoint::RawTracePointContext where T: core::marker::Sized
  1566. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::borrow(&self) -> &T
  1567. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::raw_tracepoint::RawTracePointContext where T: core::marker::Sized
  1568. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::borrow_mut(&mut self) -> &mut T
  1569. impl<T> core::convert::From<T> for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  1570. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::from(t: T) -> T
  1571. pub mod aya_ebpf::programs::retprobe
  1572. pub struct aya_ebpf::programs::retprobe::RetProbeContext
  1573. pub aya_ebpf::programs::retprobe::RetProbeContext::regs: *mut aya_ebpf_bindings::x86_64::bindings::pt_regs
  1574. impl aya_ebpf::programs::retprobe::RetProbeContext
  1575. pub fn aya_ebpf::programs::retprobe::RetProbeContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::retprobe::RetProbeContext
  1576. pub fn aya_ebpf::programs::retprobe::RetProbeContext::ret<T: FromPtRegs>(&self) -> core::option::Option<T>
  1577. impl aya_ebpf::EbpfContext for aya_ebpf::programs::retprobe::RetProbeContext
  1578. pub fn aya_ebpf::programs::retprobe::RetProbeContext::as_ptr(&self) -> *mut core::ffi::c_void
  1579. impl core::marker::Freeze for aya_ebpf::programs::retprobe::RetProbeContext
  1580. impl !core::marker::Send for aya_ebpf::programs::retprobe::RetProbeContext
  1581. impl !core::marker::Sync for aya_ebpf::programs::retprobe::RetProbeContext
  1582. impl core::marker::Unpin for aya_ebpf::programs::retprobe::RetProbeContext
  1583. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::retprobe::RetProbeContext
  1584. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::retprobe::RetProbeContext
  1585. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::retprobe::RetProbeContext where U: core::convert::From<T>
  1586. pub fn aya_ebpf::programs::retprobe::RetProbeContext::into(self) -> U
  1587. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::retprobe::RetProbeContext where U: core::convert::Into<T>
  1588. pub type aya_ebpf::programs::retprobe::RetProbeContext::Error = core::convert::Infallible
  1589. pub fn aya_ebpf::programs::retprobe::RetProbeContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1590. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::retprobe::RetProbeContext where U: core::convert::TryFrom<T>
  1591. pub type aya_ebpf::programs::retprobe::RetProbeContext::Error = <U as core::convert::TryFrom<T>>::Error
  1592. pub fn aya_ebpf::programs::retprobe::RetProbeContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1593. impl<T> core::any::Any for aya_ebpf::programs::retprobe::RetProbeContext where T: 'static + core::marker::Sized
  1594. pub fn aya_ebpf::programs::retprobe::RetProbeContext::type_id(&self) -> core::any::TypeId
  1595. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::retprobe::RetProbeContext where T: core::marker::Sized
  1596. pub fn aya_ebpf::programs::retprobe::RetProbeContext::borrow(&self) -> &T
  1597. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::retprobe::RetProbeContext where T: core::marker::Sized
  1598. pub fn aya_ebpf::programs::retprobe::RetProbeContext::borrow_mut(&mut self) -> &mut T
  1599. impl<T> core::convert::From<T> for aya_ebpf::programs::retprobe::RetProbeContext
  1600. pub fn aya_ebpf::programs::retprobe::RetProbeContext::from(t: T) -> T
  1601. pub mod aya_ebpf::programs::sk_buff
  1602. pub struct aya_ebpf::programs::sk_buff::SkBuff
  1603. pub aya_ebpf::programs::sk_buff::SkBuff::skb: *mut aya_ebpf_bindings::x86_64::bindings::__sk_buff
  1604. impl aya_ebpf::programs::sk_buff::SkBuff
  1605. pub fn aya_ebpf::programs::sk_buff::SkBuff::adjust_room(&self, len_diff: i32, mode: u32, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1606. pub fn aya_ebpf::programs::sk_buff::SkBuff::cb(&self) -> &[u32]
  1607. pub fn aya_ebpf::programs::sk_buff::SkBuff::cb_mut(&mut self) -> &mut [u32]
  1608. pub fn aya_ebpf::programs::sk_buff::SkBuff::change_proto(&self, proto: u16, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1609. pub fn aya_ebpf::programs::sk_buff::SkBuff::change_type(&self, ty: u32) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1610. pub fn aya_ebpf::programs::sk_buff::SkBuff::clone_redirect(&self, if_index: u32, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1611. pub fn aya_ebpf::programs::sk_buff::SkBuff::family(&self) -> u32
  1612. pub fn aya_ebpf::programs::sk_buff::SkBuff::get_socket_uid(&self) -> u32
  1613. pub fn aya_ebpf::programs::sk_buff::SkBuff::l3_csum_replace(&self, offset: usize, from: u64, to: u64, size: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1614. pub fn aya_ebpf::programs::sk_buff::SkBuff::l4_csum_replace(&self, offset: usize, from: u64, to: u64, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1615. pub fn aya_ebpf::programs::sk_buff::SkBuff::len(&self) -> u32
  1616. pub fn aya_ebpf::programs::sk_buff::SkBuff::load<T>(&self, offset: usize) -> core::result::Result<T, aya_ebpf_cty::od::c_long>
  1617. pub fn aya_ebpf::programs::sk_buff::SkBuff::load_bytes(&self, offset: usize, dst: &mut [u8]) -> core::result::Result<usize, aya_ebpf_cty::od::c_long>
  1618. pub fn aya_ebpf::programs::sk_buff::SkBuff::local_ipv4(&self) -> u32
  1619. pub fn aya_ebpf::programs::sk_buff::SkBuff::local_ipv6(&self) -> &[u32; 4]
  1620. pub fn aya_ebpf::programs::sk_buff::SkBuff::local_port(&self) -> u32
  1621. pub fn aya_ebpf::programs::sk_buff::SkBuff::new(skb: *mut aya_ebpf_bindings::x86_64::bindings::__sk_buff) -> aya_ebpf::programs::sk_buff::SkBuff
  1622. pub fn aya_ebpf::programs::sk_buff::SkBuff::protocol(&self) -> u32
  1623. pub fn aya_ebpf::programs::sk_buff::SkBuff::pull_data(&self, len: u32) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1624. pub fn aya_ebpf::programs::sk_buff::SkBuff::remote_ipv4(&self) -> u32
  1625. pub fn aya_ebpf::programs::sk_buff::SkBuff::remote_ipv6(&self) -> &[u32; 4]
  1626. pub fn aya_ebpf::programs::sk_buff::SkBuff::remote_port(&self) -> u32
  1627. pub fn aya_ebpf::programs::sk_buff::SkBuff::set_mark(&mut self, mark: u32)
  1628. pub fn aya_ebpf::programs::sk_buff::SkBuff::store<T>(&mut self, offset: usize, v: &T, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1629. impl core::marker::Freeze for aya_ebpf::programs::sk_buff::SkBuff
  1630. impl !core::marker::Send for aya_ebpf::programs::sk_buff::SkBuff
  1631. impl !core::marker::Sync for aya_ebpf::programs::sk_buff::SkBuff
  1632. impl core::marker::Unpin for aya_ebpf::programs::sk_buff::SkBuff
  1633. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sk_buff::SkBuff
  1634. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sk_buff::SkBuff
  1635. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sk_buff::SkBuff where U: core::convert::From<T>
  1636. pub fn aya_ebpf::programs::sk_buff::SkBuff::into(self) -> U
  1637. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sk_buff::SkBuff where U: core::convert::Into<T>
  1638. pub type aya_ebpf::programs::sk_buff::SkBuff::Error = core::convert::Infallible
  1639. pub fn aya_ebpf::programs::sk_buff::SkBuff::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1640. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sk_buff::SkBuff where U: core::convert::TryFrom<T>
  1641. pub type aya_ebpf::programs::sk_buff::SkBuff::Error = <U as core::convert::TryFrom<T>>::Error
  1642. pub fn aya_ebpf::programs::sk_buff::SkBuff::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1643. impl<T> core::any::Any for aya_ebpf::programs::sk_buff::SkBuff where T: 'static + core::marker::Sized
  1644. pub fn aya_ebpf::programs::sk_buff::SkBuff::type_id(&self) -> core::any::TypeId
  1645. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sk_buff::SkBuff where T: core::marker::Sized
  1646. pub fn aya_ebpf::programs::sk_buff::SkBuff::borrow(&self) -> &T
  1647. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sk_buff::SkBuff where T: core::marker::Sized
  1648. pub fn aya_ebpf::programs::sk_buff::SkBuff::borrow_mut(&mut self) -> &mut T
  1649. impl<T> core::convert::From<T> for aya_ebpf::programs::sk_buff::SkBuff
  1650. pub fn aya_ebpf::programs::sk_buff::SkBuff::from(t: T) -> T
  1651. pub struct aya_ebpf::programs::sk_buff::SkBuffContext
  1652. pub aya_ebpf::programs::sk_buff::SkBuffContext::skb: aya_ebpf::programs::sk_buff::SkBuff
  1653. impl aya_ebpf::programs::sk_buff::SkBuffContext
  1654. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::adjust_room(&self, len_diff: i32, mode: u32, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1655. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::cb(&self) -> &[u32]
  1656. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::cb_mut(&mut self) -> &mut [u32]
  1657. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::change_type(&self, ty: u32) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1658. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::clone_redirect(&self, if_index: u32, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1659. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::get_socket_uid(&self) -> u32
  1660. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::l3_csum_replace(&self, offset: usize, from: u64, to: u64, size: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1661. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::l4_csum_replace(&self, offset: usize, from: u64, to: u64, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1662. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::len(&self) -> u32
  1663. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::load<T>(&self, offset: usize) -> core::result::Result<T, aya_ebpf_cty::od::c_long>
  1664. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::load_bytes(&self, offset: usize, dst: &mut [u8]) -> core::result::Result<usize, aya_ebpf_cty::od::c_long>
  1665. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::new(skb: *mut aya_ebpf_bindings::x86_64::bindings::__sk_buff) -> aya_ebpf::programs::sk_buff::SkBuffContext
  1666. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::pull_data(&self, len: u32) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1667. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::set_mark(&mut self, mark: u32)
  1668. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::store<T>(&mut self, offset: usize, v: &T, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1669. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sk_buff::SkBuffContext
  1670. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::as_ptr(&self) -> *mut core::ffi::c_void
  1671. impl core::marker::Freeze for aya_ebpf::programs::sk_buff::SkBuffContext
  1672. impl !core::marker::Send for aya_ebpf::programs::sk_buff::SkBuffContext
  1673. impl !core::marker::Sync for aya_ebpf::programs::sk_buff::SkBuffContext
  1674. impl core::marker::Unpin for aya_ebpf::programs::sk_buff::SkBuffContext
  1675. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sk_buff::SkBuffContext
  1676. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sk_buff::SkBuffContext
  1677. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sk_buff::SkBuffContext where U: core::convert::From<T>
  1678. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::into(self) -> U
  1679. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sk_buff::SkBuffContext where U: core::convert::Into<T>
  1680. pub type aya_ebpf::programs::sk_buff::SkBuffContext::Error = core::convert::Infallible
  1681. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1682. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sk_buff::SkBuffContext where U: core::convert::TryFrom<T>
  1683. pub type aya_ebpf::programs::sk_buff::SkBuffContext::Error = <U as core::convert::TryFrom<T>>::Error
  1684. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1685. impl<T> core::any::Any for aya_ebpf::programs::sk_buff::SkBuffContext where T: 'static + core::marker::Sized
  1686. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::type_id(&self) -> core::any::TypeId
  1687. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sk_buff::SkBuffContext where T: core::marker::Sized
  1688. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::borrow(&self) -> &T
  1689. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sk_buff::SkBuffContext where T: core::marker::Sized
  1690. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::borrow_mut(&mut self) -> &mut T
  1691. impl<T> core::convert::From<T> for aya_ebpf::programs::sk_buff::SkBuffContext
  1692. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::from(t: T) -> T
  1693. pub mod aya_ebpf::programs::sk_lookup
  1694. pub struct aya_ebpf::programs::sk_lookup::SkLookupContext
  1695. pub aya_ebpf::programs::sk_lookup::SkLookupContext::lookup: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sk_lookup
  1696. impl aya_ebpf::programs::sk_lookup::SkLookupContext
  1697. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::new(lookup: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sk_lookup) -> aya_ebpf::programs::sk_lookup::SkLookupContext
  1698. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sk_lookup::SkLookupContext
  1699. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::as_ptr(&self) -> *mut core::ffi::c_void
  1700. impl core::marker::Freeze for aya_ebpf::programs::sk_lookup::SkLookupContext
  1701. impl !core::marker::Send for aya_ebpf::programs::sk_lookup::SkLookupContext
  1702. impl !core::marker::Sync for aya_ebpf::programs::sk_lookup::SkLookupContext
  1703. impl core::marker::Unpin for aya_ebpf::programs::sk_lookup::SkLookupContext
  1704. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sk_lookup::SkLookupContext
  1705. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sk_lookup::SkLookupContext
  1706. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sk_lookup::SkLookupContext where U: core::convert::From<T>
  1707. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::into(self) -> U
  1708. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sk_lookup::SkLookupContext where U: core::convert::Into<T>
  1709. pub type aya_ebpf::programs::sk_lookup::SkLookupContext::Error = core::convert::Infallible
  1710. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1711. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sk_lookup::SkLookupContext where U: core::convert::TryFrom<T>
  1712. pub type aya_ebpf::programs::sk_lookup::SkLookupContext::Error = <U as core::convert::TryFrom<T>>::Error
  1713. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1714. impl<T> core::any::Any for aya_ebpf::programs::sk_lookup::SkLookupContext where T: 'static + core::marker::Sized
  1715. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::type_id(&self) -> core::any::TypeId
  1716. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sk_lookup::SkLookupContext where T: core::marker::Sized
  1717. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::borrow(&self) -> &T
  1718. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sk_lookup::SkLookupContext where T: core::marker::Sized
  1719. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::borrow_mut(&mut self) -> &mut T
  1720. impl<T> core::convert::From<T> for aya_ebpf::programs::sk_lookup::SkLookupContext
  1721. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::from(t: T) -> T
  1722. pub mod aya_ebpf::programs::sk_msg
  1723. pub struct aya_ebpf::programs::sk_msg::SkMsgContext
  1724. pub aya_ebpf::programs::sk_msg::SkMsgContext::msg: *mut aya_ebpf_bindings::x86_64::bindings::sk_msg_md
  1725. impl aya_ebpf::programs::sk_msg::SkMsgContext
  1726. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::data(&self) -> usize
  1727. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::data_end(&self) -> usize
  1728. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::new(msg: *mut aya_ebpf_bindings::x86_64::bindings::sk_msg_md) -> aya_ebpf::programs::sk_msg::SkMsgContext
  1729. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::pop_data(&self, start: u32, len: u32, flags: u64) -> core::result::Result<(), i64>
  1730. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::push_data(&self, start: u32, len: u32, flags: u64) -> core::result::Result<(), i64>
  1731. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::size(&self) -> u32
  1732. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sk_msg::SkMsgContext
  1733. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::as_ptr(&self) -> *mut core::ffi::c_void
  1734. impl core::marker::Freeze for aya_ebpf::programs::sk_msg::SkMsgContext
  1735. impl !core::marker::Send for aya_ebpf::programs::sk_msg::SkMsgContext
  1736. impl !core::marker::Sync for aya_ebpf::programs::sk_msg::SkMsgContext
  1737. impl core::marker::Unpin for aya_ebpf::programs::sk_msg::SkMsgContext
  1738. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sk_msg::SkMsgContext
  1739. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sk_msg::SkMsgContext
  1740. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sk_msg::SkMsgContext where U: core::convert::From<T>
  1741. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::into(self) -> U
  1742. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sk_msg::SkMsgContext where U: core::convert::Into<T>
  1743. pub type aya_ebpf::programs::sk_msg::SkMsgContext::Error = core::convert::Infallible
  1744. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1745. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sk_msg::SkMsgContext where U: core::convert::TryFrom<T>
  1746. pub type aya_ebpf::programs::sk_msg::SkMsgContext::Error = <U as core::convert::TryFrom<T>>::Error
  1747. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1748. impl<T> core::any::Any for aya_ebpf::programs::sk_msg::SkMsgContext where T: 'static + core::marker::Sized
  1749. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::type_id(&self) -> core::any::TypeId
  1750. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sk_msg::SkMsgContext where T: core::marker::Sized
  1751. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::borrow(&self) -> &T
  1752. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sk_msg::SkMsgContext where T: core::marker::Sized
  1753. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::borrow_mut(&mut self) -> &mut T
  1754. impl<T> core::convert::From<T> for aya_ebpf::programs::sk_msg::SkMsgContext
  1755. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::from(t: T) -> T
  1756. pub mod aya_ebpf::programs::sock
  1757. pub struct aya_ebpf::programs::sock::SockContext
  1758. pub aya_ebpf::programs::sock::SockContext::sock: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock
  1759. impl aya_ebpf::programs::sock::SockContext
  1760. pub fn aya_ebpf::programs::sock::SockContext::new(sock: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock) -> aya_ebpf::programs::sock::SockContext
  1761. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sock::SockContext
  1762. pub fn aya_ebpf::programs::sock::SockContext::as_ptr(&self) -> *mut core::ffi::c_void
  1763. impl core::marker::Freeze for aya_ebpf::programs::sock::SockContext
  1764. impl !core::marker::Send for aya_ebpf::programs::sock::SockContext
  1765. impl !core::marker::Sync for aya_ebpf::programs::sock::SockContext
  1766. impl core::marker::Unpin for aya_ebpf::programs::sock::SockContext
  1767. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sock::SockContext
  1768. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sock::SockContext
  1769. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sock::SockContext where U: core::convert::From<T>
  1770. pub fn aya_ebpf::programs::sock::SockContext::into(self) -> U
  1771. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sock::SockContext where U: core::convert::Into<T>
  1772. pub type aya_ebpf::programs::sock::SockContext::Error = core::convert::Infallible
  1773. pub fn aya_ebpf::programs::sock::SockContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1774. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sock::SockContext where U: core::convert::TryFrom<T>
  1775. pub type aya_ebpf::programs::sock::SockContext::Error = <U as core::convert::TryFrom<T>>::Error
  1776. pub fn aya_ebpf::programs::sock::SockContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1777. impl<T> core::any::Any for aya_ebpf::programs::sock::SockContext where T: 'static + core::marker::Sized
  1778. pub fn aya_ebpf::programs::sock::SockContext::type_id(&self) -> core::any::TypeId
  1779. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sock::SockContext where T: core::marker::Sized
  1780. pub fn aya_ebpf::programs::sock::SockContext::borrow(&self) -> &T
  1781. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sock::SockContext where T: core::marker::Sized
  1782. pub fn aya_ebpf::programs::sock::SockContext::borrow_mut(&mut self) -> &mut T
  1783. impl<T> core::convert::From<T> for aya_ebpf::programs::sock::SockContext
  1784. pub fn aya_ebpf::programs::sock::SockContext::from(t: T) -> T
  1785. pub mod aya_ebpf::programs::sock_addr
  1786. pub struct aya_ebpf::programs::sock_addr::SockAddrContext
  1787. pub aya_ebpf::programs::sock_addr::SockAddrContext::sock_addr: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock_addr
  1788. impl aya_ebpf::programs::sock_addr::SockAddrContext
  1789. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::new(sock_addr: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock_addr) -> aya_ebpf::programs::sock_addr::SockAddrContext
  1790. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sock_addr::SockAddrContext
  1791. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::as_ptr(&self) -> *mut core::ffi::c_void
  1792. impl core::marker::Freeze for aya_ebpf::programs::sock_addr::SockAddrContext
  1793. impl !core::marker::Send for aya_ebpf::programs::sock_addr::SockAddrContext
  1794. impl !core::marker::Sync for aya_ebpf::programs::sock_addr::SockAddrContext
  1795. impl core::marker::Unpin for aya_ebpf::programs::sock_addr::SockAddrContext
  1796. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sock_addr::SockAddrContext
  1797. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sock_addr::SockAddrContext
  1798. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sock_addr::SockAddrContext where U: core::convert::From<T>
  1799. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::into(self) -> U
  1800. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sock_addr::SockAddrContext where U: core::convert::Into<T>
  1801. pub type aya_ebpf::programs::sock_addr::SockAddrContext::Error = core::convert::Infallible
  1802. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1803. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sock_addr::SockAddrContext where U: core::convert::TryFrom<T>
  1804. pub type aya_ebpf::programs::sock_addr::SockAddrContext::Error = <U as core::convert::TryFrom<T>>::Error
  1805. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1806. impl<T> core::any::Any for aya_ebpf::programs::sock_addr::SockAddrContext where T: 'static + core::marker::Sized
  1807. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::type_id(&self) -> core::any::TypeId
  1808. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sock_addr::SockAddrContext where T: core::marker::Sized
  1809. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::borrow(&self) -> &T
  1810. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sock_addr::SockAddrContext where T: core::marker::Sized
  1811. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::borrow_mut(&mut self) -> &mut T
  1812. impl<T> core::convert::From<T> for aya_ebpf::programs::sock_addr::SockAddrContext
  1813. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::from(t: T) -> T
  1814. pub mod aya_ebpf::programs::sock_ops
  1815. pub struct aya_ebpf::programs::sock_ops::SockOpsContext
  1816. pub aya_ebpf::programs::sock_ops::SockOpsContext::ops: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock_ops
  1817. impl aya_ebpf::programs::sock_ops::SockOpsContext
  1818. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::arg(&self, n: usize) -> u32
  1819. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::cb_flags(&self) -> u32
  1820. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::family(&self) -> u32
  1821. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::local_ip4(&self) -> u32
  1822. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::local_ip6(&self) -> [u32; 4]
  1823. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::local_port(&self) -> u32
  1824. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::new(ops: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock_ops) -> aya_ebpf::programs::sock_ops::SockOpsContext
  1825. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::op(&self) -> u32
  1826. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::remote_ip4(&self) -> u32
  1827. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::remote_ip6(&self) -> [u32; 4]
  1828. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::remote_port(&self) -> u32
  1829. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::set_cb_flags(&self, flags: i32) -> core::result::Result<(), i64>
  1830. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sock_ops::SockOpsContext
  1831. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::as_ptr(&self) -> *mut core::ffi::c_void
  1832. impl core::marker::Freeze for aya_ebpf::programs::sock_ops::SockOpsContext
  1833. impl !core::marker::Send for aya_ebpf::programs::sock_ops::SockOpsContext
  1834. impl !core::marker::Sync for aya_ebpf::programs::sock_ops::SockOpsContext
  1835. impl core::marker::Unpin for aya_ebpf::programs::sock_ops::SockOpsContext
  1836. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sock_ops::SockOpsContext
  1837. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sock_ops::SockOpsContext
  1838. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sock_ops::SockOpsContext where U: core::convert::From<T>
  1839. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::into(self) -> U
  1840. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sock_ops::SockOpsContext where U: core::convert::Into<T>
  1841. pub type aya_ebpf::programs::sock_ops::SockOpsContext::Error = core::convert::Infallible
  1842. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1843. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sock_ops::SockOpsContext where U: core::convert::TryFrom<T>
  1844. pub type aya_ebpf::programs::sock_ops::SockOpsContext::Error = <U as core::convert::TryFrom<T>>::Error
  1845. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1846. impl<T> core::any::Any for aya_ebpf::programs::sock_ops::SockOpsContext where T: 'static + core::marker::Sized
  1847. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::type_id(&self) -> core::any::TypeId
  1848. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sock_ops::SockOpsContext where T: core::marker::Sized
  1849. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::borrow(&self) -> &T
  1850. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sock_ops::SockOpsContext where T: core::marker::Sized
  1851. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::borrow_mut(&mut self) -> &mut T
  1852. impl<T> core::convert::From<T> for aya_ebpf::programs::sock_ops::SockOpsContext
  1853. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::from(t: T) -> T
  1854. pub mod aya_ebpf::programs::sockopt
  1855. pub struct aya_ebpf::programs::sockopt::SockoptContext
  1856. pub aya_ebpf::programs::sockopt::SockoptContext::sockopt: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sockopt
  1857. impl aya_ebpf::programs::sockopt::SockoptContext
  1858. pub fn aya_ebpf::programs::sockopt::SockoptContext::new(sockopt: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sockopt) -> aya_ebpf::programs::sockopt::SockoptContext
  1859. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sockopt::SockoptContext
  1860. pub fn aya_ebpf::programs::sockopt::SockoptContext::as_ptr(&self) -> *mut core::ffi::c_void
  1861. impl core::marker::Freeze for aya_ebpf::programs::sockopt::SockoptContext
  1862. impl !core::marker::Send for aya_ebpf::programs::sockopt::SockoptContext
  1863. impl !core::marker::Sync for aya_ebpf::programs::sockopt::SockoptContext
  1864. impl core::marker::Unpin for aya_ebpf::programs::sockopt::SockoptContext
  1865. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sockopt::SockoptContext
  1866. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sockopt::SockoptContext
  1867. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sockopt::SockoptContext where U: core::convert::From<T>
  1868. pub fn aya_ebpf::programs::sockopt::SockoptContext::into(self) -> U
  1869. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sockopt::SockoptContext where U: core::convert::Into<T>
  1870. pub type aya_ebpf::programs::sockopt::SockoptContext::Error = core::convert::Infallible
  1871. pub fn aya_ebpf::programs::sockopt::SockoptContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1872. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sockopt::SockoptContext where U: core::convert::TryFrom<T>
  1873. pub type aya_ebpf::programs::sockopt::SockoptContext::Error = <U as core::convert::TryFrom<T>>::Error
  1874. pub fn aya_ebpf::programs::sockopt::SockoptContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1875. impl<T> core::any::Any for aya_ebpf::programs::sockopt::SockoptContext where T: 'static + core::marker::Sized
  1876. pub fn aya_ebpf::programs::sockopt::SockoptContext::type_id(&self) -> core::any::TypeId
  1877. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sockopt::SockoptContext where T: core::marker::Sized
  1878. pub fn aya_ebpf::programs::sockopt::SockoptContext::borrow(&self) -> &T
  1879. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sockopt::SockoptContext where T: core::marker::Sized
  1880. pub fn aya_ebpf::programs::sockopt::SockoptContext::borrow_mut(&mut self) -> &mut T
  1881. impl<T> core::convert::From<T> for aya_ebpf::programs::sockopt::SockoptContext
  1882. pub fn aya_ebpf::programs::sockopt::SockoptContext::from(t: T) -> T
  1883. pub mod aya_ebpf::programs::sysctl
  1884. pub struct aya_ebpf::programs::sysctl::SysctlContext
  1885. pub aya_ebpf::programs::sysctl::SysctlContext::sysctl: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sysctl
  1886. impl aya_ebpf::programs::sysctl::SysctlContext
  1887. pub fn aya_ebpf::programs::sysctl::SysctlContext::new(sysctl: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sysctl) -> aya_ebpf::programs::sysctl::SysctlContext
  1888. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sysctl::SysctlContext
  1889. pub fn aya_ebpf::programs::sysctl::SysctlContext::as_ptr(&self) -> *mut core::ffi::c_void
  1890. impl core::marker::Freeze for aya_ebpf::programs::sysctl::SysctlContext
  1891. impl !core::marker::Send for aya_ebpf::programs::sysctl::SysctlContext
  1892. impl !core::marker::Sync for aya_ebpf::programs::sysctl::SysctlContext
  1893. impl core::marker::Unpin for aya_ebpf::programs::sysctl::SysctlContext
  1894. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sysctl::SysctlContext
  1895. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sysctl::SysctlContext
  1896. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sysctl::SysctlContext where U: core::convert::From<T>
  1897. pub fn aya_ebpf::programs::sysctl::SysctlContext::into(self) -> U
  1898. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sysctl::SysctlContext where U: core::convert::Into<T>
  1899. pub type aya_ebpf::programs::sysctl::SysctlContext::Error = core::convert::Infallible
  1900. pub fn aya_ebpf::programs::sysctl::SysctlContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1901. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sysctl::SysctlContext where U: core::convert::TryFrom<T>
  1902. pub type aya_ebpf::programs::sysctl::SysctlContext::Error = <U as core::convert::TryFrom<T>>::Error
  1903. pub fn aya_ebpf::programs::sysctl::SysctlContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1904. impl<T> core::any::Any for aya_ebpf::programs::sysctl::SysctlContext where T: 'static + core::marker::Sized
  1905. pub fn aya_ebpf::programs::sysctl::SysctlContext::type_id(&self) -> core::any::TypeId
  1906. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sysctl::SysctlContext where T: core::marker::Sized
  1907. pub fn aya_ebpf::programs::sysctl::SysctlContext::borrow(&self) -> &T
  1908. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sysctl::SysctlContext where T: core::marker::Sized
  1909. pub fn aya_ebpf::programs::sysctl::SysctlContext::borrow_mut(&mut self) -> &mut T
  1910. impl<T> core::convert::From<T> for aya_ebpf::programs::sysctl::SysctlContext
  1911. pub fn aya_ebpf::programs::sysctl::SysctlContext::from(t: T) -> T
  1912. pub mod aya_ebpf::programs::tc
  1913. pub struct aya_ebpf::programs::tc::TcContext
  1914. pub aya_ebpf::programs::tc::TcContext::skb: aya_ebpf::programs::sk_buff::SkBuff
  1915. impl aya_ebpf::programs::tc::TcContext
  1916. pub fn aya_ebpf::programs::tc::TcContext::adjust_room(&self, len_diff: i32, mode: u32, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1917. pub fn aya_ebpf::programs::tc::TcContext::cb(&self) -> &[u32]
  1918. pub fn aya_ebpf::programs::tc::TcContext::cb_mut(&mut self) -> &mut [u32]
  1919. pub fn aya_ebpf::programs::tc::TcContext::change_proto(&self, proto: u16, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1920. pub fn aya_ebpf::programs::tc::TcContext::change_type(&self, ty: u32) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1921. pub fn aya_ebpf::programs::tc::TcContext::clone_redirect(&self, if_index: u32, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1922. pub fn aya_ebpf::programs::tc::TcContext::data(&self) -> usize
  1923. pub fn aya_ebpf::programs::tc::TcContext::data_end(&self) -> usize
  1924. pub fn aya_ebpf::programs::tc::TcContext::get_socket_uid(&self) -> u32
  1925. pub fn aya_ebpf::programs::tc::TcContext::l3_csum_replace(&self, offset: usize, from: u64, to: u64, size: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1926. pub fn aya_ebpf::programs::tc::TcContext::l4_csum_replace(&self, offset: usize, from: u64, to: u64, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1927. pub fn aya_ebpf::programs::tc::TcContext::len(&self) -> u32
  1928. pub fn aya_ebpf::programs::tc::TcContext::load<T>(&self, offset: usize) -> core::result::Result<T, aya_ebpf_cty::od::c_long>
  1929. pub fn aya_ebpf::programs::tc::TcContext::load_bytes(&self, offset: usize, dst: &mut [u8]) -> core::result::Result<usize, aya_ebpf_cty::od::c_long>
  1930. pub fn aya_ebpf::programs::tc::TcContext::new(skb: *mut aya_ebpf_bindings::x86_64::bindings::__sk_buff) -> aya_ebpf::programs::tc::TcContext
  1931. pub fn aya_ebpf::programs::tc::TcContext::pull_data(&self, len: u32) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1932. pub fn aya_ebpf::programs::tc::TcContext::set_mark(&mut self, mark: u32)
  1933. pub fn aya_ebpf::programs::tc::TcContext::store<T>(&mut self, offset: usize, v: &T, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  1934. impl aya_ebpf::EbpfContext for aya_ebpf::programs::tc::TcContext
  1935. pub fn aya_ebpf::programs::tc::TcContext::as_ptr(&self) -> *mut aya_ebpf_cty::c_void
  1936. impl core::marker::Freeze for aya_ebpf::programs::tc::TcContext
  1937. impl !core::marker::Send for aya_ebpf::programs::tc::TcContext
  1938. impl !core::marker::Sync for aya_ebpf::programs::tc::TcContext
  1939. impl core::marker::Unpin for aya_ebpf::programs::tc::TcContext
  1940. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::tc::TcContext
  1941. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::tc::TcContext
  1942. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::tc::TcContext where U: core::convert::From<T>
  1943. pub fn aya_ebpf::programs::tc::TcContext::into(self) -> U
  1944. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::tc::TcContext where U: core::convert::Into<T>
  1945. pub type aya_ebpf::programs::tc::TcContext::Error = core::convert::Infallible
  1946. pub fn aya_ebpf::programs::tc::TcContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1947. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::tc::TcContext where U: core::convert::TryFrom<T>
  1948. pub type aya_ebpf::programs::tc::TcContext::Error = <U as core::convert::TryFrom<T>>::Error
  1949. pub fn aya_ebpf::programs::tc::TcContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1950. impl<T> core::any::Any for aya_ebpf::programs::tc::TcContext where T: 'static + core::marker::Sized
  1951. pub fn aya_ebpf::programs::tc::TcContext::type_id(&self) -> core::any::TypeId
  1952. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::tc::TcContext where T: core::marker::Sized
  1953. pub fn aya_ebpf::programs::tc::TcContext::borrow(&self) -> &T
  1954. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::tc::TcContext where T: core::marker::Sized
  1955. pub fn aya_ebpf::programs::tc::TcContext::borrow_mut(&mut self) -> &mut T
  1956. impl<T> core::convert::From<T> for aya_ebpf::programs::tc::TcContext
  1957. pub fn aya_ebpf::programs::tc::TcContext::from(t: T) -> T
  1958. pub mod aya_ebpf::programs::tp_btf
  1959. pub struct aya_ebpf::programs::tp_btf::BtfTracePointContext
  1960. impl aya_ebpf::programs::tp_btf::BtfTracePointContext
  1961. pub unsafe fn aya_ebpf::programs::tp_btf::BtfTracePointContext::arg<T: FromBtfArgument>(&self, n: usize) -> T
  1962. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::tp_btf::BtfTracePointContext
  1963. impl aya_ebpf::EbpfContext for aya_ebpf::programs::tp_btf::BtfTracePointContext
  1964. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::as_ptr(&self) -> *mut core::ffi::c_void
  1965. impl core::marker::Freeze for aya_ebpf::programs::tp_btf::BtfTracePointContext
  1966. impl !core::marker::Send for aya_ebpf::programs::tp_btf::BtfTracePointContext
  1967. impl !core::marker::Sync for aya_ebpf::programs::tp_btf::BtfTracePointContext
  1968. impl core::marker::Unpin for aya_ebpf::programs::tp_btf::BtfTracePointContext
  1969. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::tp_btf::BtfTracePointContext
  1970. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::tp_btf::BtfTracePointContext
  1971. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::tp_btf::BtfTracePointContext where U: core::convert::From<T>
  1972. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::into(self) -> U
  1973. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::tp_btf::BtfTracePointContext where U: core::convert::Into<T>
  1974. pub type aya_ebpf::programs::tp_btf::BtfTracePointContext::Error = core::convert::Infallible
  1975. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1976. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::tp_btf::BtfTracePointContext where U: core::convert::TryFrom<T>
  1977. pub type aya_ebpf::programs::tp_btf::BtfTracePointContext::Error = <U as core::convert::TryFrom<T>>::Error
  1978. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1979. impl<T> core::any::Any for aya_ebpf::programs::tp_btf::BtfTracePointContext where T: 'static + core::marker::Sized
  1980. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::type_id(&self) -> core::any::TypeId
  1981. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::tp_btf::BtfTracePointContext where T: core::marker::Sized
  1982. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::borrow(&self) -> &T
  1983. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::tp_btf::BtfTracePointContext where T: core::marker::Sized
  1984. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::borrow_mut(&mut self) -> &mut T
  1985. impl<T> core::convert::From<T> for aya_ebpf::programs::tp_btf::BtfTracePointContext
  1986. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::from(t: T) -> T
  1987. pub mod aya_ebpf::programs::tracepoint
  1988. pub struct aya_ebpf::programs::tracepoint::TracePointContext
  1989. impl aya_ebpf::programs::tracepoint::TracePointContext
  1990. pub fn aya_ebpf::programs::tracepoint::TracePointContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::tracepoint::TracePointContext
  1991. pub unsafe fn aya_ebpf::programs::tracepoint::TracePointContext::read_at<T>(&self, offset: usize) -> core::result::Result<T, i64>
  1992. impl aya_ebpf::EbpfContext for aya_ebpf::programs::tracepoint::TracePointContext
  1993. pub fn aya_ebpf::programs::tracepoint::TracePointContext::as_ptr(&self) -> *mut core::ffi::c_void
  1994. impl core::marker::Freeze for aya_ebpf::programs::tracepoint::TracePointContext
  1995. impl !core::marker::Send for aya_ebpf::programs::tracepoint::TracePointContext
  1996. impl !core::marker::Sync for aya_ebpf::programs::tracepoint::TracePointContext
  1997. impl core::marker::Unpin for aya_ebpf::programs::tracepoint::TracePointContext
  1998. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::tracepoint::TracePointContext
  1999. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::tracepoint::TracePointContext
  2000. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::tracepoint::TracePointContext where U: core::convert::From<T>
  2001. pub fn aya_ebpf::programs::tracepoint::TracePointContext::into(self) -> U
  2002. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::tracepoint::TracePointContext where U: core::convert::Into<T>
  2003. pub type aya_ebpf::programs::tracepoint::TracePointContext::Error = core::convert::Infallible
  2004. pub fn aya_ebpf::programs::tracepoint::TracePointContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2005. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::tracepoint::TracePointContext where U: core::convert::TryFrom<T>
  2006. pub type aya_ebpf::programs::tracepoint::TracePointContext::Error = <U as core::convert::TryFrom<T>>::Error
  2007. pub fn aya_ebpf::programs::tracepoint::TracePointContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2008. impl<T> core::any::Any for aya_ebpf::programs::tracepoint::TracePointContext where T: 'static + core::marker::Sized
  2009. pub fn aya_ebpf::programs::tracepoint::TracePointContext::type_id(&self) -> core::any::TypeId
  2010. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::tracepoint::TracePointContext where T: core::marker::Sized
  2011. pub fn aya_ebpf::programs::tracepoint::TracePointContext::borrow(&self) -> &T
  2012. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::tracepoint::TracePointContext where T: core::marker::Sized
  2013. pub fn aya_ebpf::programs::tracepoint::TracePointContext::borrow_mut(&mut self) -> &mut T
  2014. impl<T> core::convert::From<T> for aya_ebpf::programs::tracepoint::TracePointContext
  2015. pub fn aya_ebpf::programs::tracepoint::TracePointContext::from(t: T) -> T
  2016. pub mod aya_ebpf::programs::xdp
  2017. pub struct aya_ebpf::programs::xdp::XdpContext
  2018. pub aya_ebpf::programs::xdp::XdpContext::ctx: *mut aya_ebpf_bindings::x86_64::bindings::xdp_md
  2019. impl aya_ebpf::programs::xdp::XdpContext
  2020. pub fn aya_ebpf::programs::xdp::XdpContext::data(&self) -> usize
  2021. pub fn aya_ebpf::programs::xdp::XdpContext::data_end(&self) -> usize
  2022. pub fn aya_ebpf::programs::xdp::XdpContext::metadata(&self) -> usize
  2023. pub fn aya_ebpf::programs::xdp::XdpContext::metadata_end(&self) -> usize
  2024. pub fn aya_ebpf::programs::xdp::XdpContext::new(ctx: *mut aya_ebpf_bindings::x86_64::bindings::xdp_md) -> aya_ebpf::programs::xdp::XdpContext
  2025. impl aya_ebpf::EbpfContext for aya_ebpf::programs::xdp::XdpContext
  2026. pub fn aya_ebpf::programs::xdp::XdpContext::as_ptr(&self) -> *mut core::ffi::c_void
  2027. impl core::marker::Freeze for aya_ebpf::programs::xdp::XdpContext
  2028. impl !core::marker::Send for aya_ebpf::programs::xdp::XdpContext
  2029. impl !core::marker::Sync for aya_ebpf::programs::xdp::XdpContext
  2030. impl core::marker::Unpin for aya_ebpf::programs::xdp::XdpContext
  2031. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::xdp::XdpContext
  2032. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::xdp::XdpContext
  2033. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::xdp::XdpContext where U: core::convert::From<T>
  2034. pub fn aya_ebpf::programs::xdp::XdpContext::into(self) -> U
  2035. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::xdp::XdpContext where U: core::convert::Into<T>
  2036. pub type aya_ebpf::programs::xdp::XdpContext::Error = core::convert::Infallible
  2037. pub fn aya_ebpf::programs::xdp::XdpContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2038. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::xdp::XdpContext where U: core::convert::TryFrom<T>
  2039. pub type aya_ebpf::programs::xdp::XdpContext::Error = <U as core::convert::TryFrom<T>>::Error
  2040. pub fn aya_ebpf::programs::xdp::XdpContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2041. impl<T> core::any::Any for aya_ebpf::programs::xdp::XdpContext where T: 'static + core::marker::Sized
  2042. pub fn aya_ebpf::programs::xdp::XdpContext::type_id(&self) -> core::any::TypeId
  2043. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::xdp::XdpContext where T: core::marker::Sized
  2044. pub fn aya_ebpf::programs::xdp::XdpContext::borrow(&self) -> &T
  2045. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::xdp::XdpContext where T: core::marker::Sized
  2046. pub fn aya_ebpf::programs::xdp::XdpContext::borrow_mut(&mut self) -> &mut T
  2047. impl<T> core::convert::From<T> for aya_ebpf::programs::xdp::XdpContext
  2048. pub fn aya_ebpf::programs::xdp::XdpContext::from(t: T) -> T
  2049. pub struct aya_ebpf::programs::BtfTracePointContext
  2050. impl aya_ebpf::programs::tp_btf::BtfTracePointContext
  2051. pub unsafe fn aya_ebpf::programs::tp_btf::BtfTracePointContext::arg<T: FromBtfArgument>(&self, n: usize) -> T
  2052. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::tp_btf::BtfTracePointContext
  2053. impl aya_ebpf::EbpfContext for aya_ebpf::programs::tp_btf::BtfTracePointContext
  2054. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::as_ptr(&self) -> *mut core::ffi::c_void
  2055. impl core::marker::Freeze for aya_ebpf::programs::tp_btf::BtfTracePointContext
  2056. impl !core::marker::Send for aya_ebpf::programs::tp_btf::BtfTracePointContext
  2057. impl !core::marker::Sync for aya_ebpf::programs::tp_btf::BtfTracePointContext
  2058. impl core::marker::Unpin for aya_ebpf::programs::tp_btf::BtfTracePointContext
  2059. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::tp_btf::BtfTracePointContext
  2060. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::tp_btf::BtfTracePointContext
  2061. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::tp_btf::BtfTracePointContext where U: core::convert::From<T>
  2062. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::into(self) -> U
  2063. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::tp_btf::BtfTracePointContext where U: core::convert::Into<T>
  2064. pub type aya_ebpf::programs::tp_btf::BtfTracePointContext::Error = core::convert::Infallible
  2065. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2066. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::tp_btf::BtfTracePointContext where U: core::convert::TryFrom<T>
  2067. pub type aya_ebpf::programs::tp_btf::BtfTracePointContext::Error = <U as core::convert::TryFrom<T>>::Error
  2068. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2069. impl<T> core::any::Any for aya_ebpf::programs::tp_btf::BtfTracePointContext where T: 'static + core::marker::Sized
  2070. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::type_id(&self) -> core::any::TypeId
  2071. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::tp_btf::BtfTracePointContext where T: core::marker::Sized
  2072. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::borrow(&self) -> &T
  2073. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::tp_btf::BtfTracePointContext where T: core::marker::Sized
  2074. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::borrow_mut(&mut self) -> &mut T
  2075. impl<T> core::convert::From<T> for aya_ebpf::programs::tp_btf::BtfTracePointContext
  2076. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::from(t: T) -> T
  2077. pub struct aya_ebpf::programs::DeviceContext
  2078. pub aya_ebpf::programs::DeviceContext::device: *mut aya_ebpf_bindings::x86_64::bindings::bpf_cgroup_dev_ctx
  2079. impl aya_ebpf::programs::device::DeviceContext
  2080. pub fn aya_ebpf::programs::device::DeviceContext::new(device: *mut aya_ebpf_bindings::x86_64::bindings::bpf_cgroup_dev_ctx) -> aya_ebpf::programs::device::DeviceContext
  2081. impl aya_ebpf::EbpfContext for aya_ebpf::programs::device::DeviceContext
  2082. pub fn aya_ebpf::programs::device::DeviceContext::as_ptr(&self) -> *mut core::ffi::c_void
  2083. impl core::marker::Freeze for aya_ebpf::programs::device::DeviceContext
  2084. impl !core::marker::Send for aya_ebpf::programs::device::DeviceContext
  2085. impl !core::marker::Sync for aya_ebpf::programs::device::DeviceContext
  2086. impl core::marker::Unpin for aya_ebpf::programs::device::DeviceContext
  2087. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::device::DeviceContext
  2088. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::device::DeviceContext
  2089. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::device::DeviceContext where U: core::convert::From<T>
  2090. pub fn aya_ebpf::programs::device::DeviceContext::into(self) -> U
  2091. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::device::DeviceContext where U: core::convert::Into<T>
  2092. pub type aya_ebpf::programs::device::DeviceContext::Error = core::convert::Infallible
  2093. pub fn aya_ebpf::programs::device::DeviceContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2094. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::device::DeviceContext where U: core::convert::TryFrom<T>
  2095. pub type aya_ebpf::programs::device::DeviceContext::Error = <U as core::convert::TryFrom<T>>::Error
  2096. pub fn aya_ebpf::programs::device::DeviceContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2097. impl<T> core::any::Any for aya_ebpf::programs::device::DeviceContext where T: 'static + core::marker::Sized
  2098. pub fn aya_ebpf::programs::device::DeviceContext::type_id(&self) -> core::any::TypeId
  2099. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::device::DeviceContext where T: core::marker::Sized
  2100. pub fn aya_ebpf::programs::device::DeviceContext::borrow(&self) -> &T
  2101. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::device::DeviceContext where T: core::marker::Sized
  2102. pub fn aya_ebpf::programs::device::DeviceContext::borrow_mut(&mut self) -> &mut T
  2103. impl<T> core::convert::From<T> for aya_ebpf::programs::device::DeviceContext
  2104. pub fn aya_ebpf::programs::device::DeviceContext::from(t: T) -> T
  2105. pub struct aya_ebpf::programs::FEntryContext
  2106. impl aya_ebpf::programs::fentry::FEntryContext
  2107. pub unsafe fn aya_ebpf::programs::fentry::FEntryContext::arg<T: FromBtfArgument>(&self, n: usize) -> T
  2108. pub fn aya_ebpf::programs::fentry::FEntryContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::fentry::FEntryContext
  2109. impl aya_ebpf::EbpfContext for aya_ebpf::programs::fentry::FEntryContext
  2110. pub fn aya_ebpf::programs::fentry::FEntryContext::as_ptr(&self) -> *mut core::ffi::c_void
  2111. impl core::marker::Freeze for aya_ebpf::programs::fentry::FEntryContext
  2112. impl !core::marker::Send for aya_ebpf::programs::fentry::FEntryContext
  2113. impl !core::marker::Sync for aya_ebpf::programs::fentry::FEntryContext
  2114. impl core::marker::Unpin for aya_ebpf::programs::fentry::FEntryContext
  2115. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::fentry::FEntryContext
  2116. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::fentry::FEntryContext
  2117. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::fentry::FEntryContext where U: core::convert::From<T>
  2118. pub fn aya_ebpf::programs::fentry::FEntryContext::into(self) -> U
  2119. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::fentry::FEntryContext where U: core::convert::Into<T>
  2120. pub type aya_ebpf::programs::fentry::FEntryContext::Error = core::convert::Infallible
  2121. pub fn aya_ebpf::programs::fentry::FEntryContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2122. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::fentry::FEntryContext where U: core::convert::TryFrom<T>
  2123. pub type aya_ebpf::programs::fentry::FEntryContext::Error = <U as core::convert::TryFrom<T>>::Error
  2124. pub fn aya_ebpf::programs::fentry::FEntryContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2125. impl<T> core::any::Any for aya_ebpf::programs::fentry::FEntryContext where T: 'static + core::marker::Sized
  2126. pub fn aya_ebpf::programs::fentry::FEntryContext::type_id(&self) -> core::any::TypeId
  2127. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::fentry::FEntryContext where T: core::marker::Sized
  2128. pub fn aya_ebpf::programs::fentry::FEntryContext::borrow(&self) -> &T
  2129. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::fentry::FEntryContext where T: core::marker::Sized
  2130. pub fn aya_ebpf::programs::fentry::FEntryContext::borrow_mut(&mut self) -> &mut T
  2131. impl<T> core::convert::From<T> for aya_ebpf::programs::fentry::FEntryContext
  2132. pub fn aya_ebpf::programs::fentry::FEntryContext::from(t: T) -> T
  2133. pub struct aya_ebpf::programs::FExitContext
  2134. impl aya_ebpf::programs::fexit::FExitContext
  2135. pub unsafe fn aya_ebpf::programs::fexit::FExitContext::arg<T: FromBtfArgument>(&self, n: usize) -> T
  2136. pub fn aya_ebpf::programs::fexit::FExitContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::fexit::FExitContext
  2137. impl aya_ebpf::EbpfContext for aya_ebpf::programs::fexit::FExitContext
  2138. pub fn aya_ebpf::programs::fexit::FExitContext::as_ptr(&self) -> *mut core::ffi::c_void
  2139. impl core::marker::Freeze for aya_ebpf::programs::fexit::FExitContext
  2140. impl !core::marker::Send for aya_ebpf::programs::fexit::FExitContext
  2141. impl !core::marker::Sync for aya_ebpf::programs::fexit::FExitContext
  2142. impl core::marker::Unpin for aya_ebpf::programs::fexit::FExitContext
  2143. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::fexit::FExitContext
  2144. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::fexit::FExitContext
  2145. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::fexit::FExitContext where U: core::convert::From<T>
  2146. pub fn aya_ebpf::programs::fexit::FExitContext::into(self) -> U
  2147. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::fexit::FExitContext where U: core::convert::Into<T>
  2148. pub type aya_ebpf::programs::fexit::FExitContext::Error = core::convert::Infallible
  2149. pub fn aya_ebpf::programs::fexit::FExitContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2150. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::fexit::FExitContext where U: core::convert::TryFrom<T>
  2151. pub type aya_ebpf::programs::fexit::FExitContext::Error = <U as core::convert::TryFrom<T>>::Error
  2152. pub fn aya_ebpf::programs::fexit::FExitContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2153. impl<T> core::any::Any for aya_ebpf::programs::fexit::FExitContext where T: 'static + core::marker::Sized
  2154. pub fn aya_ebpf::programs::fexit::FExitContext::type_id(&self) -> core::any::TypeId
  2155. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::fexit::FExitContext where T: core::marker::Sized
  2156. pub fn aya_ebpf::programs::fexit::FExitContext::borrow(&self) -> &T
  2157. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::fexit::FExitContext where T: core::marker::Sized
  2158. pub fn aya_ebpf::programs::fexit::FExitContext::borrow_mut(&mut self) -> &mut T
  2159. impl<T> core::convert::From<T> for aya_ebpf::programs::fexit::FExitContext
  2160. pub fn aya_ebpf::programs::fexit::FExitContext::from(t: T) -> T
  2161. pub struct aya_ebpf::programs::LsmContext
  2162. impl aya_ebpf::programs::lsm::LsmContext
  2163. pub unsafe fn aya_ebpf::programs::lsm::LsmContext::arg<T: FromBtfArgument>(&self, n: usize) -> T
  2164. pub fn aya_ebpf::programs::lsm::LsmContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::lsm::LsmContext
  2165. impl aya_ebpf::EbpfContext for aya_ebpf::programs::lsm::LsmContext
  2166. pub fn aya_ebpf::programs::lsm::LsmContext::as_ptr(&self) -> *mut core::ffi::c_void
  2167. impl core::marker::Freeze for aya_ebpf::programs::lsm::LsmContext
  2168. impl !core::marker::Send for aya_ebpf::programs::lsm::LsmContext
  2169. impl !core::marker::Sync for aya_ebpf::programs::lsm::LsmContext
  2170. impl core::marker::Unpin for aya_ebpf::programs::lsm::LsmContext
  2171. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::lsm::LsmContext
  2172. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::lsm::LsmContext
  2173. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::lsm::LsmContext where U: core::convert::From<T>
  2174. pub fn aya_ebpf::programs::lsm::LsmContext::into(self) -> U
  2175. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::lsm::LsmContext where U: core::convert::Into<T>
  2176. pub type aya_ebpf::programs::lsm::LsmContext::Error = core::convert::Infallible
  2177. pub fn aya_ebpf::programs::lsm::LsmContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2178. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::lsm::LsmContext where U: core::convert::TryFrom<T>
  2179. pub type aya_ebpf::programs::lsm::LsmContext::Error = <U as core::convert::TryFrom<T>>::Error
  2180. pub fn aya_ebpf::programs::lsm::LsmContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2181. impl<T> core::any::Any for aya_ebpf::programs::lsm::LsmContext where T: 'static + core::marker::Sized
  2182. pub fn aya_ebpf::programs::lsm::LsmContext::type_id(&self) -> core::any::TypeId
  2183. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::lsm::LsmContext where T: core::marker::Sized
  2184. pub fn aya_ebpf::programs::lsm::LsmContext::borrow(&self) -> &T
  2185. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::lsm::LsmContext where T: core::marker::Sized
  2186. pub fn aya_ebpf::programs::lsm::LsmContext::borrow_mut(&mut self) -> &mut T
  2187. impl<T> core::convert::From<T> for aya_ebpf::programs::lsm::LsmContext
  2188. pub fn aya_ebpf::programs::lsm::LsmContext::from(t: T) -> T
  2189. pub struct aya_ebpf::programs::PerfEventContext
  2190. impl aya_ebpf::programs::perf_event::PerfEventContext
  2191. pub fn aya_ebpf::programs::perf_event::PerfEventContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::perf_event::PerfEventContext
  2192. impl aya_ebpf::EbpfContext for aya_ebpf::programs::perf_event::PerfEventContext
  2193. pub fn aya_ebpf::programs::perf_event::PerfEventContext::as_ptr(&self) -> *mut core::ffi::c_void
  2194. impl core::marker::Freeze for aya_ebpf::programs::perf_event::PerfEventContext
  2195. impl !core::marker::Send for aya_ebpf::programs::perf_event::PerfEventContext
  2196. impl !core::marker::Sync for aya_ebpf::programs::perf_event::PerfEventContext
  2197. impl core::marker::Unpin for aya_ebpf::programs::perf_event::PerfEventContext
  2198. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::perf_event::PerfEventContext
  2199. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::perf_event::PerfEventContext
  2200. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::perf_event::PerfEventContext where U: core::convert::From<T>
  2201. pub fn aya_ebpf::programs::perf_event::PerfEventContext::into(self) -> U
  2202. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::perf_event::PerfEventContext where U: core::convert::Into<T>
  2203. pub type aya_ebpf::programs::perf_event::PerfEventContext::Error = core::convert::Infallible
  2204. pub fn aya_ebpf::programs::perf_event::PerfEventContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2205. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::perf_event::PerfEventContext where U: core::convert::TryFrom<T>
  2206. pub type aya_ebpf::programs::perf_event::PerfEventContext::Error = <U as core::convert::TryFrom<T>>::Error
  2207. pub fn aya_ebpf::programs::perf_event::PerfEventContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2208. impl<T> core::any::Any for aya_ebpf::programs::perf_event::PerfEventContext where T: 'static + core::marker::Sized
  2209. pub fn aya_ebpf::programs::perf_event::PerfEventContext::type_id(&self) -> core::any::TypeId
  2210. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::perf_event::PerfEventContext where T: core::marker::Sized
  2211. pub fn aya_ebpf::programs::perf_event::PerfEventContext::borrow(&self) -> &T
  2212. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::perf_event::PerfEventContext where T: core::marker::Sized
  2213. pub fn aya_ebpf::programs::perf_event::PerfEventContext::borrow_mut(&mut self) -> &mut T
  2214. impl<T> core::convert::From<T> for aya_ebpf::programs::perf_event::PerfEventContext
  2215. pub fn aya_ebpf::programs::perf_event::PerfEventContext::from(t: T) -> T
  2216. pub struct aya_ebpf::programs::ProbeContext
  2217. pub aya_ebpf::programs::ProbeContext::regs: *mut aya_ebpf_bindings::x86_64::bindings::pt_regs
  2218. impl aya_ebpf::programs::probe::ProbeContext
  2219. pub fn aya_ebpf::programs::probe::ProbeContext::arg<T: FromPtRegs>(&self, n: usize) -> core::option::Option<T>
  2220. pub fn aya_ebpf::programs::probe::ProbeContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::probe::ProbeContext
  2221. impl aya_ebpf::EbpfContext for aya_ebpf::programs::probe::ProbeContext
  2222. pub fn aya_ebpf::programs::probe::ProbeContext::as_ptr(&self) -> *mut core::ffi::c_void
  2223. impl core::marker::Freeze for aya_ebpf::programs::probe::ProbeContext
  2224. impl !core::marker::Send for aya_ebpf::programs::probe::ProbeContext
  2225. impl !core::marker::Sync for aya_ebpf::programs::probe::ProbeContext
  2226. impl core::marker::Unpin for aya_ebpf::programs::probe::ProbeContext
  2227. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::probe::ProbeContext
  2228. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::probe::ProbeContext
  2229. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::probe::ProbeContext where U: core::convert::From<T>
  2230. pub fn aya_ebpf::programs::probe::ProbeContext::into(self) -> U
  2231. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::probe::ProbeContext where U: core::convert::Into<T>
  2232. pub type aya_ebpf::programs::probe::ProbeContext::Error = core::convert::Infallible
  2233. pub fn aya_ebpf::programs::probe::ProbeContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2234. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::probe::ProbeContext where U: core::convert::TryFrom<T>
  2235. pub type aya_ebpf::programs::probe::ProbeContext::Error = <U as core::convert::TryFrom<T>>::Error
  2236. pub fn aya_ebpf::programs::probe::ProbeContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2237. impl<T> core::any::Any for aya_ebpf::programs::probe::ProbeContext where T: 'static + core::marker::Sized
  2238. pub fn aya_ebpf::programs::probe::ProbeContext::type_id(&self) -> core::any::TypeId
  2239. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::probe::ProbeContext where T: core::marker::Sized
  2240. pub fn aya_ebpf::programs::probe::ProbeContext::borrow(&self) -> &T
  2241. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::probe::ProbeContext where T: core::marker::Sized
  2242. pub fn aya_ebpf::programs::probe::ProbeContext::borrow_mut(&mut self) -> &mut T
  2243. impl<T> core::convert::From<T> for aya_ebpf::programs::probe::ProbeContext
  2244. pub fn aya_ebpf::programs::probe::ProbeContext::from(t: T) -> T
  2245. pub struct aya_ebpf::programs::RawTracePointContext
  2246. impl aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  2247. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  2248. impl aya_ebpf::EbpfContext for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  2249. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::as_ptr(&self) -> *mut core::ffi::c_void
  2250. impl core::marker::Freeze for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  2251. impl !core::marker::Send for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  2252. impl !core::marker::Sync for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  2253. impl core::marker::Unpin for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  2254. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  2255. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  2256. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::raw_tracepoint::RawTracePointContext where U: core::convert::From<T>
  2257. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::into(self) -> U
  2258. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::raw_tracepoint::RawTracePointContext where U: core::convert::Into<T>
  2259. pub type aya_ebpf::programs::raw_tracepoint::RawTracePointContext::Error = core::convert::Infallible
  2260. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2261. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::raw_tracepoint::RawTracePointContext where U: core::convert::TryFrom<T>
  2262. pub type aya_ebpf::programs::raw_tracepoint::RawTracePointContext::Error = <U as core::convert::TryFrom<T>>::Error
  2263. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2264. impl<T> core::any::Any for aya_ebpf::programs::raw_tracepoint::RawTracePointContext where T: 'static + core::marker::Sized
  2265. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::type_id(&self) -> core::any::TypeId
  2266. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::raw_tracepoint::RawTracePointContext where T: core::marker::Sized
  2267. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::borrow(&self) -> &T
  2268. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::raw_tracepoint::RawTracePointContext where T: core::marker::Sized
  2269. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::borrow_mut(&mut self) -> &mut T
  2270. impl<T> core::convert::From<T> for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  2271. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::from(t: T) -> T
  2272. pub struct aya_ebpf::programs::RetProbeContext
  2273. pub aya_ebpf::programs::RetProbeContext::regs: *mut aya_ebpf_bindings::x86_64::bindings::pt_regs
  2274. impl aya_ebpf::programs::retprobe::RetProbeContext
  2275. pub fn aya_ebpf::programs::retprobe::RetProbeContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::retprobe::RetProbeContext
  2276. pub fn aya_ebpf::programs::retprobe::RetProbeContext::ret<T: FromPtRegs>(&self) -> core::option::Option<T>
  2277. impl aya_ebpf::EbpfContext for aya_ebpf::programs::retprobe::RetProbeContext
  2278. pub fn aya_ebpf::programs::retprobe::RetProbeContext::as_ptr(&self) -> *mut core::ffi::c_void
  2279. impl core::marker::Freeze for aya_ebpf::programs::retprobe::RetProbeContext
  2280. impl !core::marker::Send for aya_ebpf::programs::retprobe::RetProbeContext
  2281. impl !core::marker::Sync for aya_ebpf::programs::retprobe::RetProbeContext
  2282. impl core::marker::Unpin for aya_ebpf::programs::retprobe::RetProbeContext
  2283. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::retprobe::RetProbeContext
  2284. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::retprobe::RetProbeContext
  2285. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::retprobe::RetProbeContext where U: core::convert::From<T>
  2286. pub fn aya_ebpf::programs::retprobe::RetProbeContext::into(self) -> U
  2287. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::retprobe::RetProbeContext where U: core::convert::Into<T>
  2288. pub type aya_ebpf::programs::retprobe::RetProbeContext::Error = core::convert::Infallible
  2289. pub fn aya_ebpf::programs::retprobe::RetProbeContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2290. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::retprobe::RetProbeContext where U: core::convert::TryFrom<T>
  2291. pub type aya_ebpf::programs::retprobe::RetProbeContext::Error = <U as core::convert::TryFrom<T>>::Error
  2292. pub fn aya_ebpf::programs::retprobe::RetProbeContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2293. impl<T> core::any::Any for aya_ebpf::programs::retprobe::RetProbeContext where T: 'static + core::marker::Sized
  2294. pub fn aya_ebpf::programs::retprobe::RetProbeContext::type_id(&self) -> core::any::TypeId
  2295. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::retprobe::RetProbeContext where T: core::marker::Sized
  2296. pub fn aya_ebpf::programs::retprobe::RetProbeContext::borrow(&self) -> &T
  2297. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::retprobe::RetProbeContext where T: core::marker::Sized
  2298. pub fn aya_ebpf::programs::retprobe::RetProbeContext::borrow_mut(&mut self) -> &mut T
  2299. impl<T> core::convert::From<T> for aya_ebpf::programs::retprobe::RetProbeContext
  2300. pub fn aya_ebpf::programs::retprobe::RetProbeContext::from(t: T) -> T
  2301. pub struct aya_ebpf::programs::SkBuffContext
  2302. pub aya_ebpf::programs::SkBuffContext::skb: aya_ebpf::programs::sk_buff::SkBuff
  2303. impl aya_ebpf::programs::sk_buff::SkBuffContext
  2304. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::adjust_room(&self, len_diff: i32, mode: u32, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2305. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::cb(&self) -> &[u32]
  2306. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::cb_mut(&mut self) -> &mut [u32]
  2307. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::change_type(&self, ty: u32) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2308. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::clone_redirect(&self, if_index: u32, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2309. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::get_socket_uid(&self) -> u32
  2310. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::l3_csum_replace(&self, offset: usize, from: u64, to: u64, size: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2311. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::l4_csum_replace(&self, offset: usize, from: u64, to: u64, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2312. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::len(&self) -> u32
  2313. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::load<T>(&self, offset: usize) -> core::result::Result<T, aya_ebpf_cty::od::c_long>
  2314. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::load_bytes(&self, offset: usize, dst: &mut [u8]) -> core::result::Result<usize, aya_ebpf_cty::od::c_long>
  2315. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::new(skb: *mut aya_ebpf_bindings::x86_64::bindings::__sk_buff) -> aya_ebpf::programs::sk_buff::SkBuffContext
  2316. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::pull_data(&self, len: u32) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2317. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::set_mark(&mut self, mark: u32)
  2318. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::store<T>(&mut self, offset: usize, v: &T, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2319. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sk_buff::SkBuffContext
  2320. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::as_ptr(&self) -> *mut core::ffi::c_void
  2321. impl core::marker::Freeze for aya_ebpf::programs::sk_buff::SkBuffContext
  2322. impl !core::marker::Send for aya_ebpf::programs::sk_buff::SkBuffContext
  2323. impl !core::marker::Sync for aya_ebpf::programs::sk_buff::SkBuffContext
  2324. impl core::marker::Unpin for aya_ebpf::programs::sk_buff::SkBuffContext
  2325. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sk_buff::SkBuffContext
  2326. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sk_buff::SkBuffContext
  2327. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sk_buff::SkBuffContext where U: core::convert::From<T>
  2328. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::into(self) -> U
  2329. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sk_buff::SkBuffContext where U: core::convert::Into<T>
  2330. pub type aya_ebpf::programs::sk_buff::SkBuffContext::Error = core::convert::Infallible
  2331. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2332. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sk_buff::SkBuffContext where U: core::convert::TryFrom<T>
  2333. pub type aya_ebpf::programs::sk_buff::SkBuffContext::Error = <U as core::convert::TryFrom<T>>::Error
  2334. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2335. impl<T> core::any::Any for aya_ebpf::programs::sk_buff::SkBuffContext where T: 'static + core::marker::Sized
  2336. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::type_id(&self) -> core::any::TypeId
  2337. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sk_buff::SkBuffContext where T: core::marker::Sized
  2338. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::borrow(&self) -> &T
  2339. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sk_buff::SkBuffContext where T: core::marker::Sized
  2340. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::borrow_mut(&mut self) -> &mut T
  2341. impl<T> core::convert::From<T> for aya_ebpf::programs::sk_buff::SkBuffContext
  2342. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::from(t: T) -> T
  2343. pub struct aya_ebpf::programs::SkLookupContext
  2344. pub aya_ebpf::programs::SkLookupContext::lookup: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sk_lookup
  2345. impl aya_ebpf::programs::sk_lookup::SkLookupContext
  2346. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::new(lookup: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sk_lookup) -> aya_ebpf::programs::sk_lookup::SkLookupContext
  2347. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sk_lookup::SkLookupContext
  2348. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::as_ptr(&self) -> *mut core::ffi::c_void
  2349. impl core::marker::Freeze for aya_ebpf::programs::sk_lookup::SkLookupContext
  2350. impl !core::marker::Send for aya_ebpf::programs::sk_lookup::SkLookupContext
  2351. impl !core::marker::Sync for aya_ebpf::programs::sk_lookup::SkLookupContext
  2352. impl core::marker::Unpin for aya_ebpf::programs::sk_lookup::SkLookupContext
  2353. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sk_lookup::SkLookupContext
  2354. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sk_lookup::SkLookupContext
  2355. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sk_lookup::SkLookupContext where U: core::convert::From<T>
  2356. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::into(self) -> U
  2357. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sk_lookup::SkLookupContext where U: core::convert::Into<T>
  2358. pub type aya_ebpf::programs::sk_lookup::SkLookupContext::Error = core::convert::Infallible
  2359. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2360. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sk_lookup::SkLookupContext where U: core::convert::TryFrom<T>
  2361. pub type aya_ebpf::programs::sk_lookup::SkLookupContext::Error = <U as core::convert::TryFrom<T>>::Error
  2362. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2363. impl<T> core::any::Any for aya_ebpf::programs::sk_lookup::SkLookupContext where T: 'static + core::marker::Sized
  2364. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::type_id(&self) -> core::any::TypeId
  2365. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sk_lookup::SkLookupContext where T: core::marker::Sized
  2366. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::borrow(&self) -> &T
  2367. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sk_lookup::SkLookupContext where T: core::marker::Sized
  2368. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::borrow_mut(&mut self) -> &mut T
  2369. impl<T> core::convert::From<T> for aya_ebpf::programs::sk_lookup::SkLookupContext
  2370. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::from(t: T) -> T
  2371. pub struct aya_ebpf::programs::SkMsgContext
  2372. pub aya_ebpf::programs::SkMsgContext::msg: *mut aya_ebpf_bindings::x86_64::bindings::sk_msg_md
  2373. impl aya_ebpf::programs::sk_msg::SkMsgContext
  2374. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::data(&self) -> usize
  2375. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::data_end(&self) -> usize
  2376. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::new(msg: *mut aya_ebpf_bindings::x86_64::bindings::sk_msg_md) -> aya_ebpf::programs::sk_msg::SkMsgContext
  2377. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::pop_data(&self, start: u32, len: u32, flags: u64) -> core::result::Result<(), i64>
  2378. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::push_data(&self, start: u32, len: u32, flags: u64) -> core::result::Result<(), i64>
  2379. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::size(&self) -> u32
  2380. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sk_msg::SkMsgContext
  2381. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::as_ptr(&self) -> *mut core::ffi::c_void
  2382. impl core::marker::Freeze for aya_ebpf::programs::sk_msg::SkMsgContext
  2383. impl !core::marker::Send for aya_ebpf::programs::sk_msg::SkMsgContext
  2384. impl !core::marker::Sync for aya_ebpf::programs::sk_msg::SkMsgContext
  2385. impl core::marker::Unpin for aya_ebpf::programs::sk_msg::SkMsgContext
  2386. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sk_msg::SkMsgContext
  2387. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sk_msg::SkMsgContext
  2388. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sk_msg::SkMsgContext where U: core::convert::From<T>
  2389. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::into(self) -> U
  2390. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sk_msg::SkMsgContext where U: core::convert::Into<T>
  2391. pub type aya_ebpf::programs::sk_msg::SkMsgContext::Error = core::convert::Infallible
  2392. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2393. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sk_msg::SkMsgContext where U: core::convert::TryFrom<T>
  2394. pub type aya_ebpf::programs::sk_msg::SkMsgContext::Error = <U as core::convert::TryFrom<T>>::Error
  2395. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2396. impl<T> core::any::Any for aya_ebpf::programs::sk_msg::SkMsgContext where T: 'static + core::marker::Sized
  2397. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::type_id(&self) -> core::any::TypeId
  2398. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sk_msg::SkMsgContext where T: core::marker::Sized
  2399. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::borrow(&self) -> &T
  2400. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sk_msg::SkMsgContext where T: core::marker::Sized
  2401. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::borrow_mut(&mut self) -> &mut T
  2402. impl<T> core::convert::From<T> for aya_ebpf::programs::sk_msg::SkMsgContext
  2403. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::from(t: T) -> T
  2404. pub struct aya_ebpf::programs::SockAddrContext
  2405. pub aya_ebpf::programs::SockAddrContext::sock_addr: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock_addr
  2406. impl aya_ebpf::programs::sock_addr::SockAddrContext
  2407. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::new(sock_addr: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock_addr) -> aya_ebpf::programs::sock_addr::SockAddrContext
  2408. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sock_addr::SockAddrContext
  2409. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::as_ptr(&self) -> *mut core::ffi::c_void
  2410. impl core::marker::Freeze for aya_ebpf::programs::sock_addr::SockAddrContext
  2411. impl !core::marker::Send for aya_ebpf::programs::sock_addr::SockAddrContext
  2412. impl !core::marker::Sync for aya_ebpf::programs::sock_addr::SockAddrContext
  2413. impl core::marker::Unpin for aya_ebpf::programs::sock_addr::SockAddrContext
  2414. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sock_addr::SockAddrContext
  2415. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sock_addr::SockAddrContext
  2416. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sock_addr::SockAddrContext where U: core::convert::From<T>
  2417. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::into(self) -> U
  2418. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sock_addr::SockAddrContext where U: core::convert::Into<T>
  2419. pub type aya_ebpf::programs::sock_addr::SockAddrContext::Error = core::convert::Infallible
  2420. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2421. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sock_addr::SockAddrContext where U: core::convert::TryFrom<T>
  2422. pub type aya_ebpf::programs::sock_addr::SockAddrContext::Error = <U as core::convert::TryFrom<T>>::Error
  2423. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2424. impl<T> core::any::Any for aya_ebpf::programs::sock_addr::SockAddrContext where T: 'static + core::marker::Sized
  2425. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::type_id(&self) -> core::any::TypeId
  2426. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sock_addr::SockAddrContext where T: core::marker::Sized
  2427. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::borrow(&self) -> &T
  2428. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sock_addr::SockAddrContext where T: core::marker::Sized
  2429. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::borrow_mut(&mut self) -> &mut T
  2430. impl<T> core::convert::From<T> for aya_ebpf::programs::sock_addr::SockAddrContext
  2431. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::from(t: T) -> T
  2432. pub struct aya_ebpf::programs::SockContext
  2433. pub aya_ebpf::programs::SockContext::sock: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock
  2434. impl aya_ebpf::programs::sock::SockContext
  2435. pub fn aya_ebpf::programs::sock::SockContext::new(sock: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock) -> aya_ebpf::programs::sock::SockContext
  2436. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sock::SockContext
  2437. pub fn aya_ebpf::programs::sock::SockContext::as_ptr(&self) -> *mut core::ffi::c_void
  2438. impl core::marker::Freeze for aya_ebpf::programs::sock::SockContext
  2439. impl !core::marker::Send for aya_ebpf::programs::sock::SockContext
  2440. impl !core::marker::Sync for aya_ebpf::programs::sock::SockContext
  2441. impl core::marker::Unpin for aya_ebpf::programs::sock::SockContext
  2442. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sock::SockContext
  2443. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sock::SockContext
  2444. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sock::SockContext where U: core::convert::From<T>
  2445. pub fn aya_ebpf::programs::sock::SockContext::into(self) -> U
  2446. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sock::SockContext where U: core::convert::Into<T>
  2447. pub type aya_ebpf::programs::sock::SockContext::Error = core::convert::Infallible
  2448. pub fn aya_ebpf::programs::sock::SockContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2449. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sock::SockContext where U: core::convert::TryFrom<T>
  2450. pub type aya_ebpf::programs::sock::SockContext::Error = <U as core::convert::TryFrom<T>>::Error
  2451. pub fn aya_ebpf::programs::sock::SockContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2452. impl<T> core::any::Any for aya_ebpf::programs::sock::SockContext where T: 'static + core::marker::Sized
  2453. pub fn aya_ebpf::programs::sock::SockContext::type_id(&self) -> core::any::TypeId
  2454. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sock::SockContext where T: core::marker::Sized
  2455. pub fn aya_ebpf::programs::sock::SockContext::borrow(&self) -> &T
  2456. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sock::SockContext where T: core::marker::Sized
  2457. pub fn aya_ebpf::programs::sock::SockContext::borrow_mut(&mut self) -> &mut T
  2458. impl<T> core::convert::From<T> for aya_ebpf::programs::sock::SockContext
  2459. pub fn aya_ebpf::programs::sock::SockContext::from(t: T) -> T
  2460. pub struct aya_ebpf::programs::SockOpsContext
  2461. pub aya_ebpf::programs::SockOpsContext::ops: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock_ops
  2462. impl aya_ebpf::programs::sock_ops::SockOpsContext
  2463. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::arg(&self, n: usize) -> u32
  2464. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::cb_flags(&self) -> u32
  2465. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::family(&self) -> u32
  2466. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::local_ip4(&self) -> u32
  2467. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::local_ip6(&self) -> [u32; 4]
  2468. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::local_port(&self) -> u32
  2469. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::new(ops: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sock_ops) -> aya_ebpf::programs::sock_ops::SockOpsContext
  2470. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::op(&self) -> u32
  2471. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::remote_ip4(&self) -> u32
  2472. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::remote_ip6(&self) -> [u32; 4]
  2473. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::remote_port(&self) -> u32
  2474. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::set_cb_flags(&self, flags: i32) -> core::result::Result<(), i64>
  2475. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sock_ops::SockOpsContext
  2476. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::as_ptr(&self) -> *mut core::ffi::c_void
  2477. impl core::marker::Freeze for aya_ebpf::programs::sock_ops::SockOpsContext
  2478. impl !core::marker::Send for aya_ebpf::programs::sock_ops::SockOpsContext
  2479. impl !core::marker::Sync for aya_ebpf::programs::sock_ops::SockOpsContext
  2480. impl core::marker::Unpin for aya_ebpf::programs::sock_ops::SockOpsContext
  2481. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sock_ops::SockOpsContext
  2482. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sock_ops::SockOpsContext
  2483. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sock_ops::SockOpsContext where U: core::convert::From<T>
  2484. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::into(self) -> U
  2485. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sock_ops::SockOpsContext where U: core::convert::Into<T>
  2486. pub type aya_ebpf::programs::sock_ops::SockOpsContext::Error = core::convert::Infallible
  2487. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2488. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sock_ops::SockOpsContext where U: core::convert::TryFrom<T>
  2489. pub type aya_ebpf::programs::sock_ops::SockOpsContext::Error = <U as core::convert::TryFrom<T>>::Error
  2490. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2491. impl<T> core::any::Any for aya_ebpf::programs::sock_ops::SockOpsContext where T: 'static + core::marker::Sized
  2492. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::type_id(&self) -> core::any::TypeId
  2493. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sock_ops::SockOpsContext where T: core::marker::Sized
  2494. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::borrow(&self) -> &T
  2495. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sock_ops::SockOpsContext where T: core::marker::Sized
  2496. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::borrow_mut(&mut self) -> &mut T
  2497. impl<T> core::convert::From<T> for aya_ebpf::programs::sock_ops::SockOpsContext
  2498. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::from(t: T) -> T
  2499. pub struct aya_ebpf::programs::SockoptContext
  2500. pub aya_ebpf::programs::SockoptContext::sockopt: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sockopt
  2501. impl aya_ebpf::programs::sockopt::SockoptContext
  2502. pub fn aya_ebpf::programs::sockopt::SockoptContext::new(sockopt: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sockopt) -> aya_ebpf::programs::sockopt::SockoptContext
  2503. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sockopt::SockoptContext
  2504. pub fn aya_ebpf::programs::sockopt::SockoptContext::as_ptr(&self) -> *mut core::ffi::c_void
  2505. impl core::marker::Freeze for aya_ebpf::programs::sockopt::SockoptContext
  2506. impl !core::marker::Send for aya_ebpf::programs::sockopt::SockoptContext
  2507. impl !core::marker::Sync for aya_ebpf::programs::sockopt::SockoptContext
  2508. impl core::marker::Unpin for aya_ebpf::programs::sockopt::SockoptContext
  2509. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sockopt::SockoptContext
  2510. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sockopt::SockoptContext
  2511. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sockopt::SockoptContext where U: core::convert::From<T>
  2512. pub fn aya_ebpf::programs::sockopt::SockoptContext::into(self) -> U
  2513. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sockopt::SockoptContext where U: core::convert::Into<T>
  2514. pub type aya_ebpf::programs::sockopt::SockoptContext::Error = core::convert::Infallible
  2515. pub fn aya_ebpf::programs::sockopt::SockoptContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2516. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sockopt::SockoptContext where U: core::convert::TryFrom<T>
  2517. pub type aya_ebpf::programs::sockopt::SockoptContext::Error = <U as core::convert::TryFrom<T>>::Error
  2518. pub fn aya_ebpf::programs::sockopt::SockoptContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2519. impl<T> core::any::Any for aya_ebpf::programs::sockopt::SockoptContext where T: 'static + core::marker::Sized
  2520. pub fn aya_ebpf::programs::sockopt::SockoptContext::type_id(&self) -> core::any::TypeId
  2521. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sockopt::SockoptContext where T: core::marker::Sized
  2522. pub fn aya_ebpf::programs::sockopt::SockoptContext::borrow(&self) -> &T
  2523. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sockopt::SockoptContext where T: core::marker::Sized
  2524. pub fn aya_ebpf::programs::sockopt::SockoptContext::borrow_mut(&mut self) -> &mut T
  2525. impl<T> core::convert::From<T> for aya_ebpf::programs::sockopt::SockoptContext
  2526. pub fn aya_ebpf::programs::sockopt::SockoptContext::from(t: T) -> T
  2527. pub struct aya_ebpf::programs::SysctlContext
  2528. pub aya_ebpf::programs::SysctlContext::sysctl: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sysctl
  2529. impl aya_ebpf::programs::sysctl::SysctlContext
  2530. pub fn aya_ebpf::programs::sysctl::SysctlContext::new(sysctl: *mut aya_ebpf_bindings::x86_64::bindings::bpf_sysctl) -> aya_ebpf::programs::sysctl::SysctlContext
  2531. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sysctl::SysctlContext
  2532. pub fn aya_ebpf::programs::sysctl::SysctlContext::as_ptr(&self) -> *mut core::ffi::c_void
  2533. impl core::marker::Freeze for aya_ebpf::programs::sysctl::SysctlContext
  2534. impl !core::marker::Send for aya_ebpf::programs::sysctl::SysctlContext
  2535. impl !core::marker::Sync for aya_ebpf::programs::sysctl::SysctlContext
  2536. impl core::marker::Unpin for aya_ebpf::programs::sysctl::SysctlContext
  2537. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::sysctl::SysctlContext
  2538. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::sysctl::SysctlContext
  2539. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::sysctl::SysctlContext where U: core::convert::From<T>
  2540. pub fn aya_ebpf::programs::sysctl::SysctlContext::into(self) -> U
  2541. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::sysctl::SysctlContext where U: core::convert::Into<T>
  2542. pub type aya_ebpf::programs::sysctl::SysctlContext::Error = core::convert::Infallible
  2543. pub fn aya_ebpf::programs::sysctl::SysctlContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2544. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::sysctl::SysctlContext where U: core::convert::TryFrom<T>
  2545. pub type aya_ebpf::programs::sysctl::SysctlContext::Error = <U as core::convert::TryFrom<T>>::Error
  2546. pub fn aya_ebpf::programs::sysctl::SysctlContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2547. impl<T> core::any::Any for aya_ebpf::programs::sysctl::SysctlContext where T: 'static + core::marker::Sized
  2548. pub fn aya_ebpf::programs::sysctl::SysctlContext::type_id(&self) -> core::any::TypeId
  2549. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::sysctl::SysctlContext where T: core::marker::Sized
  2550. pub fn aya_ebpf::programs::sysctl::SysctlContext::borrow(&self) -> &T
  2551. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::sysctl::SysctlContext where T: core::marker::Sized
  2552. pub fn aya_ebpf::programs::sysctl::SysctlContext::borrow_mut(&mut self) -> &mut T
  2553. impl<T> core::convert::From<T> for aya_ebpf::programs::sysctl::SysctlContext
  2554. pub fn aya_ebpf::programs::sysctl::SysctlContext::from(t: T) -> T
  2555. pub struct aya_ebpf::programs::TcContext
  2556. pub aya_ebpf::programs::TcContext::skb: aya_ebpf::programs::sk_buff::SkBuff
  2557. impl aya_ebpf::programs::tc::TcContext
  2558. pub fn aya_ebpf::programs::tc::TcContext::adjust_room(&self, len_diff: i32, mode: u32, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2559. pub fn aya_ebpf::programs::tc::TcContext::cb(&self) -> &[u32]
  2560. pub fn aya_ebpf::programs::tc::TcContext::cb_mut(&mut self) -> &mut [u32]
  2561. pub fn aya_ebpf::programs::tc::TcContext::change_proto(&self, proto: u16, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2562. pub fn aya_ebpf::programs::tc::TcContext::change_type(&self, ty: u32) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2563. pub fn aya_ebpf::programs::tc::TcContext::clone_redirect(&self, if_index: u32, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2564. pub fn aya_ebpf::programs::tc::TcContext::data(&self) -> usize
  2565. pub fn aya_ebpf::programs::tc::TcContext::data_end(&self) -> usize
  2566. pub fn aya_ebpf::programs::tc::TcContext::get_socket_uid(&self) -> u32
  2567. pub fn aya_ebpf::programs::tc::TcContext::l3_csum_replace(&self, offset: usize, from: u64, to: u64, size: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2568. pub fn aya_ebpf::programs::tc::TcContext::l4_csum_replace(&self, offset: usize, from: u64, to: u64, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2569. pub fn aya_ebpf::programs::tc::TcContext::len(&self) -> u32
  2570. pub fn aya_ebpf::programs::tc::TcContext::load<T>(&self, offset: usize) -> core::result::Result<T, aya_ebpf_cty::od::c_long>
  2571. pub fn aya_ebpf::programs::tc::TcContext::load_bytes(&self, offset: usize, dst: &mut [u8]) -> core::result::Result<usize, aya_ebpf_cty::od::c_long>
  2572. pub fn aya_ebpf::programs::tc::TcContext::new(skb: *mut aya_ebpf_bindings::x86_64::bindings::__sk_buff) -> aya_ebpf::programs::tc::TcContext
  2573. pub fn aya_ebpf::programs::tc::TcContext::pull_data(&self, len: u32) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2574. pub fn aya_ebpf::programs::tc::TcContext::set_mark(&mut self, mark: u32)
  2575. pub fn aya_ebpf::programs::tc::TcContext::store<T>(&mut self, offset: usize, v: &T, flags: u64) -> core::result::Result<(), aya_ebpf_cty::od::c_long>
  2576. impl aya_ebpf::EbpfContext for aya_ebpf::programs::tc::TcContext
  2577. pub fn aya_ebpf::programs::tc::TcContext::as_ptr(&self) -> *mut aya_ebpf_cty::c_void
  2578. impl core::marker::Freeze for aya_ebpf::programs::tc::TcContext
  2579. impl !core::marker::Send for aya_ebpf::programs::tc::TcContext
  2580. impl !core::marker::Sync for aya_ebpf::programs::tc::TcContext
  2581. impl core::marker::Unpin for aya_ebpf::programs::tc::TcContext
  2582. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::tc::TcContext
  2583. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::tc::TcContext
  2584. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::tc::TcContext where U: core::convert::From<T>
  2585. pub fn aya_ebpf::programs::tc::TcContext::into(self) -> U
  2586. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::tc::TcContext where U: core::convert::Into<T>
  2587. pub type aya_ebpf::programs::tc::TcContext::Error = core::convert::Infallible
  2588. pub fn aya_ebpf::programs::tc::TcContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2589. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::tc::TcContext where U: core::convert::TryFrom<T>
  2590. pub type aya_ebpf::programs::tc::TcContext::Error = <U as core::convert::TryFrom<T>>::Error
  2591. pub fn aya_ebpf::programs::tc::TcContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2592. impl<T> core::any::Any for aya_ebpf::programs::tc::TcContext where T: 'static + core::marker::Sized
  2593. pub fn aya_ebpf::programs::tc::TcContext::type_id(&self) -> core::any::TypeId
  2594. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::tc::TcContext where T: core::marker::Sized
  2595. pub fn aya_ebpf::programs::tc::TcContext::borrow(&self) -> &T
  2596. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::tc::TcContext where T: core::marker::Sized
  2597. pub fn aya_ebpf::programs::tc::TcContext::borrow_mut(&mut self) -> &mut T
  2598. impl<T> core::convert::From<T> for aya_ebpf::programs::tc::TcContext
  2599. pub fn aya_ebpf::programs::tc::TcContext::from(t: T) -> T
  2600. pub struct aya_ebpf::programs::TracePointContext
  2601. impl aya_ebpf::programs::tracepoint::TracePointContext
  2602. pub fn aya_ebpf::programs::tracepoint::TracePointContext::new(ctx: *mut core::ffi::c_void) -> aya_ebpf::programs::tracepoint::TracePointContext
  2603. pub unsafe fn aya_ebpf::programs::tracepoint::TracePointContext::read_at<T>(&self, offset: usize) -> core::result::Result<T, i64>
  2604. impl aya_ebpf::EbpfContext for aya_ebpf::programs::tracepoint::TracePointContext
  2605. pub fn aya_ebpf::programs::tracepoint::TracePointContext::as_ptr(&self) -> *mut core::ffi::c_void
  2606. impl core::marker::Freeze for aya_ebpf::programs::tracepoint::TracePointContext
  2607. impl !core::marker::Send for aya_ebpf::programs::tracepoint::TracePointContext
  2608. impl !core::marker::Sync for aya_ebpf::programs::tracepoint::TracePointContext
  2609. impl core::marker::Unpin for aya_ebpf::programs::tracepoint::TracePointContext
  2610. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::tracepoint::TracePointContext
  2611. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::tracepoint::TracePointContext
  2612. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::tracepoint::TracePointContext where U: core::convert::From<T>
  2613. pub fn aya_ebpf::programs::tracepoint::TracePointContext::into(self) -> U
  2614. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::tracepoint::TracePointContext where U: core::convert::Into<T>
  2615. pub type aya_ebpf::programs::tracepoint::TracePointContext::Error = core::convert::Infallible
  2616. pub fn aya_ebpf::programs::tracepoint::TracePointContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2617. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::tracepoint::TracePointContext where U: core::convert::TryFrom<T>
  2618. pub type aya_ebpf::programs::tracepoint::TracePointContext::Error = <U as core::convert::TryFrom<T>>::Error
  2619. pub fn aya_ebpf::programs::tracepoint::TracePointContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2620. impl<T> core::any::Any for aya_ebpf::programs::tracepoint::TracePointContext where T: 'static + core::marker::Sized
  2621. pub fn aya_ebpf::programs::tracepoint::TracePointContext::type_id(&self) -> core::any::TypeId
  2622. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::tracepoint::TracePointContext where T: core::marker::Sized
  2623. pub fn aya_ebpf::programs::tracepoint::TracePointContext::borrow(&self) -> &T
  2624. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::tracepoint::TracePointContext where T: core::marker::Sized
  2625. pub fn aya_ebpf::programs::tracepoint::TracePointContext::borrow_mut(&mut self) -> &mut T
  2626. impl<T> core::convert::From<T> for aya_ebpf::programs::tracepoint::TracePointContext
  2627. pub fn aya_ebpf::programs::tracepoint::TracePointContext::from(t: T) -> T
  2628. pub struct aya_ebpf::programs::XdpContext
  2629. pub aya_ebpf::programs::XdpContext::ctx: *mut aya_ebpf_bindings::x86_64::bindings::xdp_md
  2630. impl aya_ebpf::programs::xdp::XdpContext
  2631. pub fn aya_ebpf::programs::xdp::XdpContext::data(&self) -> usize
  2632. pub fn aya_ebpf::programs::xdp::XdpContext::data_end(&self) -> usize
  2633. pub fn aya_ebpf::programs::xdp::XdpContext::metadata(&self) -> usize
  2634. pub fn aya_ebpf::programs::xdp::XdpContext::metadata_end(&self) -> usize
  2635. pub fn aya_ebpf::programs::xdp::XdpContext::new(ctx: *mut aya_ebpf_bindings::x86_64::bindings::xdp_md) -> aya_ebpf::programs::xdp::XdpContext
  2636. impl aya_ebpf::EbpfContext for aya_ebpf::programs::xdp::XdpContext
  2637. pub fn aya_ebpf::programs::xdp::XdpContext::as_ptr(&self) -> *mut core::ffi::c_void
  2638. impl core::marker::Freeze for aya_ebpf::programs::xdp::XdpContext
  2639. impl !core::marker::Send for aya_ebpf::programs::xdp::XdpContext
  2640. impl !core::marker::Sync for aya_ebpf::programs::xdp::XdpContext
  2641. impl core::marker::Unpin for aya_ebpf::programs::xdp::XdpContext
  2642. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::programs::xdp::XdpContext
  2643. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::programs::xdp::XdpContext
  2644. impl<T, U> core::convert::Into<U> for aya_ebpf::programs::xdp::XdpContext where U: core::convert::From<T>
  2645. pub fn aya_ebpf::programs::xdp::XdpContext::into(self) -> U
  2646. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::programs::xdp::XdpContext where U: core::convert::Into<T>
  2647. pub type aya_ebpf::programs::xdp::XdpContext::Error = core::convert::Infallible
  2648. pub fn aya_ebpf::programs::xdp::XdpContext::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2649. impl<T, U> core::convert::TryInto<U> for aya_ebpf::programs::xdp::XdpContext where U: core::convert::TryFrom<T>
  2650. pub type aya_ebpf::programs::xdp::XdpContext::Error = <U as core::convert::TryFrom<T>>::Error
  2651. pub fn aya_ebpf::programs::xdp::XdpContext::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2652. impl<T> core::any::Any for aya_ebpf::programs::xdp::XdpContext where T: 'static + core::marker::Sized
  2653. pub fn aya_ebpf::programs::xdp::XdpContext::type_id(&self) -> core::any::TypeId
  2654. impl<T> core::borrow::Borrow<T> for aya_ebpf::programs::xdp::XdpContext where T: core::marker::Sized
  2655. pub fn aya_ebpf::programs::xdp::XdpContext::borrow(&self) -> &T
  2656. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::programs::xdp::XdpContext where T: core::marker::Sized
  2657. pub fn aya_ebpf::programs::xdp::XdpContext::borrow_mut(&mut self) -> &mut T
  2658. impl<T> core::convert::From<T> for aya_ebpf::programs::xdp::XdpContext
  2659. pub fn aya_ebpf::programs::xdp::XdpContext::from(t: T) -> T
  2660. pub macro aya_ebpf::bpf_printk!
  2661. pub struct aya_ebpf::PtRegs
  2662. impl aya_ebpf::PtRegs
  2663. pub fn aya_ebpf::PtRegs::arg<T: FromPtRegs>(&self, n: usize) -> core::option::Option<T>
  2664. pub fn aya_ebpf::PtRegs::as_ptr(&self) -> *mut aya_ebpf_bindings::x86_64::bindings::pt_regs
  2665. pub fn aya_ebpf::PtRegs::new(regs: *mut aya_ebpf_bindings::x86_64::bindings::pt_regs) -> Self
  2666. pub fn aya_ebpf::PtRegs::ret<T: FromPtRegs>(&self) -> core::option::Option<T>
  2667. impl core::marker::Freeze for aya_ebpf::PtRegs
  2668. impl !core::marker::Send for aya_ebpf::PtRegs
  2669. impl !core::marker::Sync for aya_ebpf::PtRegs
  2670. impl core::marker::Unpin for aya_ebpf::PtRegs
  2671. impl core::panic::unwind_safe::RefUnwindSafe for aya_ebpf::PtRegs
  2672. impl core::panic::unwind_safe::UnwindSafe for aya_ebpf::PtRegs
  2673. impl<T, U> core::convert::Into<U> for aya_ebpf::PtRegs where U: core::convert::From<T>
  2674. pub fn aya_ebpf::PtRegs::into(self) -> U
  2675. impl<T, U> core::convert::TryFrom<U> for aya_ebpf::PtRegs where U: core::convert::Into<T>
  2676. pub type aya_ebpf::PtRegs::Error = core::convert::Infallible
  2677. pub fn aya_ebpf::PtRegs::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2678. impl<T, U> core::convert::TryInto<U> for aya_ebpf::PtRegs where U: core::convert::TryFrom<T>
  2679. pub type aya_ebpf::PtRegs::Error = <U as core::convert::TryFrom<T>>::Error
  2680. pub fn aya_ebpf::PtRegs::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2681. impl<T> core::any::Any for aya_ebpf::PtRegs where T: 'static + core::marker::Sized
  2682. pub fn aya_ebpf::PtRegs::type_id(&self) -> core::any::TypeId
  2683. impl<T> core::borrow::Borrow<T> for aya_ebpf::PtRegs where T: core::marker::Sized
  2684. pub fn aya_ebpf::PtRegs::borrow(&self) -> &T
  2685. impl<T> core::borrow::BorrowMut<T> for aya_ebpf::PtRegs where T: core::marker::Sized
  2686. pub fn aya_ebpf::PtRegs::borrow_mut(&mut self) -> &mut T
  2687. impl<T> core::convert::From<T> for aya_ebpf::PtRegs
  2688. pub fn aya_ebpf::PtRegs::from(t: T) -> T
  2689. pub const aya_ebpf::TASK_COMM_LEN: usize
  2690. pub trait aya_ebpf::EbpfContext
  2691. pub fn aya_ebpf::EbpfContext::as_ptr(&self) -> *mut core::ffi::c_void
  2692. pub fn aya_ebpf::EbpfContext::command(&self) -> core::result::Result<[u8; 16], aya_ebpf_cty::od::c_long>
  2693. pub fn aya_ebpf::EbpfContext::gid(&self) -> u32
  2694. pub fn aya_ebpf::EbpfContext::pid(&self) -> u32
  2695. pub fn aya_ebpf::EbpfContext::tgid(&self) -> u32
  2696. pub fn aya_ebpf::EbpfContext::uid(&self) -> u32
  2697. impl aya_ebpf::EbpfContext for aya_ebpf::programs::device::DeviceContext
  2698. pub fn aya_ebpf::programs::device::DeviceContext::as_ptr(&self) -> *mut core::ffi::c_void
  2699. impl aya_ebpf::EbpfContext for aya_ebpf::programs::fentry::FEntryContext
  2700. pub fn aya_ebpf::programs::fentry::FEntryContext::as_ptr(&self) -> *mut core::ffi::c_void
  2701. impl aya_ebpf::EbpfContext for aya_ebpf::programs::fexit::FExitContext
  2702. pub fn aya_ebpf::programs::fexit::FExitContext::as_ptr(&self) -> *mut core::ffi::c_void
  2703. impl aya_ebpf::EbpfContext for aya_ebpf::programs::lsm::LsmContext
  2704. pub fn aya_ebpf::programs::lsm::LsmContext::as_ptr(&self) -> *mut core::ffi::c_void
  2705. impl aya_ebpf::EbpfContext for aya_ebpf::programs::perf_event::PerfEventContext
  2706. pub fn aya_ebpf::programs::perf_event::PerfEventContext::as_ptr(&self) -> *mut core::ffi::c_void
  2707. impl aya_ebpf::EbpfContext for aya_ebpf::programs::probe::ProbeContext
  2708. pub fn aya_ebpf::programs::probe::ProbeContext::as_ptr(&self) -> *mut core::ffi::c_void
  2709. impl aya_ebpf::EbpfContext for aya_ebpf::programs::raw_tracepoint::RawTracePointContext
  2710. pub fn aya_ebpf::programs::raw_tracepoint::RawTracePointContext::as_ptr(&self) -> *mut core::ffi::c_void
  2711. impl aya_ebpf::EbpfContext for aya_ebpf::programs::retprobe::RetProbeContext
  2712. pub fn aya_ebpf::programs::retprobe::RetProbeContext::as_ptr(&self) -> *mut core::ffi::c_void
  2713. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sk_buff::SkBuffContext
  2714. pub fn aya_ebpf::programs::sk_buff::SkBuffContext::as_ptr(&self) -> *mut core::ffi::c_void
  2715. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sk_lookup::SkLookupContext
  2716. pub fn aya_ebpf::programs::sk_lookup::SkLookupContext::as_ptr(&self) -> *mut core::ffi::c_void
  2717. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sk_msg::SkMsgContext
  2718. pub fn aya_ebpf::programs::sk_msg::SkMsgContext::as_ptr(&self) -> *mut core::ffi::c_void
  2719. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sock::SockContext
  2720. pub fn aya_ebpf::programs::sock::SockContext::as_ptr(&self) -> *mut core::ffi::c_void
  2721. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sock_addr::SockAddrContext
  2722. pub fn aya_ebpf::programs::sock_addr::SockAddrContext::as_ptr(&self) -> *mut core::ffi::c_void
  2723. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sock_ops::SockOpsContext
  2724. pub fn aya_ebpf::programs::sock_ops::SockOpsContext::as_ptr(&self) -> *mut core::ffi::c_void
  2725. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sockopt::SockoptContext
  2726. pub fn aya_ebpf::programs::sockopt::SockoptContext::as_ptr(&self) -> *mut core::ffi::c_void
  2727. impl aya_ebpf::EbpfContext for aya_ebpf::programs::sysctl::SysctlContext
  2728. pub fn aya_ebpf::programs::sysctl::SysctlContext::as_ptr(&self) -> *mut core::ffi::c_void
  2729. impl aya_ebpf::EbpfContext for aya_ebpf::programs::tc::TcContext
  2730. pub fn aya_ebpf::programs::tc::TcContext::as_ptr(&self) -> *mut aya_ebpf_cty::c_void
  2731. impl aya_ebpf::EbpfContext for aya_ebpf::programs::tp_btf::BtfTracePointContext
  2732. pub fn aya_ebpf::programs::tp_btf::BtfTracePointContext::as_ptr(&self) -> *mut core::ffi::c_void
  2733. impl aya_ebpf::EbpfContext for aya_ebpf::programs::tracepoint::TracePointContext
  2734. pub fn aya_ebpf::programs::tracepoint::TracePointContext::as_ptr(&self) -> *mut core::ffi::c_void
  2735. impl aya_ebpf::EbpfContext for aya_ebpf::programs::xdp::XdpContext
  2736. pub fn aya_ebpf::programs::xdp::XdpContext::as_ptr(&self) -> *mut core::ffi::c_void
  2737. pub fn aya_ebpf::check_bounds_signed(value: i64, lower: i64, upper: i64) -> bool
  2738. #[no_mangle] pub unsafe c fn aya_ebpf::memcpy(dest: *mut u8, src: *mut u8, n: usize)
  2739. #[no_mangle] pub unsafe c fn aya_ebpf::memset(s: *mut u8, c: aya_ebpf_cty::ad::c_int, n: usize)