aya.txt 948 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532
  1. pub mod aya
  2. pub use aya::Btf
  3. pub use aya::BtfError
  4. pub use aya::Endianness
  5. pub use aya::PinningType
  6. pub use aya::bpf_map_def
  7. pub mod aya::maps
  8. pub mod aya::maps::array
  9. pub struct aya::maps::array::Array<T, V: aya::Pod>
  10. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  11. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  12. pub fn aya::maps::array::Array<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<V, aya::maps::MapError>> + '_
  13. pub fn aya::maps::array::Array<T, V>::len(&self) -> u32
  14. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  15. pub fn aya::maps::array::Array<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  16. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  17. pub fn aya::maps::array::Array<T, V>::set(&mut self, index: u32, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  18. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  19. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  20. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  21. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  22. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  23. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  24. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  25. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  26. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  27. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  28. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  29. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  30. impl<T, V> core::marker::Freeze for aya::maps::array::Array<T, V> where T: core::marker::Freeze
  31. impl<T, V> core::marker::Send for aya::maps::array::Array<T, V> where T: core::marker::Send, V: core::marker::Send
  32. impl<T, V> core::marker::Sync for aya::maps::array::Array<T, V> where T: core::marker::Sync, V: core::marker::Sync
  33. impl<T, V> core::marker::Unpin for aya::maps::array::Array<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  34. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  35. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  36. impl<T, U> core::convert::Into<U> for aya::maps::array::Array<T, V> where U: core::convert::From<T>
  37. pub fn aya::maps::array::Array<T, V>::into(self) -> U
  38. impl<T, U> core::convert::TryFrom<U> for aya::maps::array::Array<T, V> where U: core::convert::Into<T>
  39. pub type aya::maps::array::Array<T, V>::Error = core::convert::Infallible
  40. pub fn aya::maps::array::Array<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  41. impl<T, U> core::convert::TryInto<U> for aya::maps::array::Array<T, V> where U: core::convert::TryFrom<T>
  42. pub type aya::maps::array::Array<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  43. pub fn aya::maps::array::Array<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  44. impl<T> core::any::Any for aya::maps::array::Array<T, V> where T: 'static + ?core::marker::Sized
  45. pub fn aya::maps::array::Array<T, V>::type_id(&self) -> core::any::TypeId
  46. impl<T> core::borrow::Borrow<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  47. pub fn aya::maps::array::Array<T, V>::borrow(&self) -> &T
  48. impl<T> core::borrow::BorrowMut<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  49. pub fn aya::maps::array::Array<T, V>::borrow_mut(&mut self) -> &mut T
  50. impl<T> core::convert::From<T> for aya::maps::array::Array<T, V>
  51. pub fn aya::maps::array::Array<T, V>::from(t: T) -> T
  52. pub struct aya::maps::array::PerCpuArray<T, V: aya::Pod>
  53. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  54. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  55. pub fn aya::maps::PerCpuArray<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>> + '_
  56. pub fn aya::maps::PerCpuArray<T, V>::len(&self) -> u32
  57. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  58. pub fn aya::maps::PerCpuArray<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  59. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  60. pub fn aya::maps::PerCpuArray<T, V>::set(&mut self, index: u32, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  61. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  62. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  63. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  64. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  65. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  66. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  67. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  68. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  69. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  70. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  71. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  72. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  73. impl<T, V> core::marker::Freeze for aya::maps::PerCpuArray<T, V> where T: core::marker::Freeze
  74. impl<T, V> core::marker::Send for aya::maps::PerCpuArray<T, V> where T: core::marker::Send, V: core::marker::Send
  75. impl<T, V> core::marker::Sync for aya::maps::PerCpuArray<T, V> where T: core::marker::Sync, V: core::marker::Sync
  76. impl<T, V> core::marker::Unpin for aya::maps::PerCpuArray<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  77. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  78. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  79. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::From<T>
  80. pub fn aya::maps::PerCpuArray<T, V>::into(self) -> U
  81. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::Into<T>
  82. pub type aya::maps::PerCpuArray<T, V>::Error = core::convert::Infallible
  83. pub fn aya::maps::PerCpuArray<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  84. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::TryFrom<T>
  85. pub type aya::maps::PerCpuArray<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  86. pub fn aya::maps::PerCpuArray<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  87. impl<T> core::any::Any for aya::maps::PerCpuArray<T, V> where T: 'static + ?core::marker::Sized
  88. pub fn aya::maps::PerCpuArray<T, V>::type_id(&self) -> core::any::TypeId
  89. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  90. pub fn aya::maps::PerCpuArray<T, V>::borrow(&self) -> &T
  91. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  92. pub fn aya::maps::PerCpuArray<T, V>::borrow_mut(&mut self) -> &mut T
  93. impl<T> core::convert::From<T> for aya::maps::PerCpuArray<T, V>
  94. pub fn aya::maps::PerCpuArray<T, V>::from(t: T) -> T
  95. pub struct aya::maps::array::ProgramArray<T>
  96. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  97. pub fn aya::maps::ProgramArray<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  98. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  99. pub fn aya::maps::ProgramArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  100. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  101. pub fn aya::maps::ProgramArray<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  102. pub fn aya::maps::ProgramArray<T>::set(&mut self, index: u32, program: &aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  103. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  104. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  105. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  106. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  107. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  108. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  109. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  110. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  111. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  112. impl<T> core::marker::Freeze for aya::maps::ProgramArray<T> where T: core::marker::Freeze
  113. impl<T> core::marker::Send for aya::maps::ProgramArray<T> where T: core::marker::Send
  114. impl<T> core::marker::Sync for aya::maps::ProgramArray<T> where T: core::marker::Sync
  115. impl<T> core::marker::Unpin for aya::maps::ProgramArray<T> where T: core::marker::Unpin
  116. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  117. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::UnwindSafe
  118. impl<T, U> core::convert::Into<U> for aya::maps::ProgramArray<T> where U: core::convert::From<T>
  119. pub fn aya::maps::ProgramArray<T>::into(self) -> U
  120. impl<T, U> core::convert::TryFrom<U> for aya::maps::ProgramArray<T> where U: core::convert::Into<T>
  121. pub type aya::maps::ProgramArray<T>::Error = core::convert::Infallible
  122. pub fn aya::maps::ProgramArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  123. impl<T, U> core::convert::TryInto<U> for aya::maps::ProgramArray<T> where U: core::convert::TryFrom<T>
  124. pub type aya::maps::ProgramArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  125. pub fn aya::maps::ProgramArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  126. impl<T> core::any::Any for aya::maps::ProgramArray<T> where T: 'static + ?core::marker::Sized
  127. pub fn aya::maps::ProgramArray<T>::type_id(&self) -> core::any::TypeId
  128. impl<T> core::borrow::Borrow<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  129. pub fn aya::maps::ProgramArray<T>::borrow(&self) -> &T
  130. impl<T> core::borrow::BorrowMut<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  131. pub fn aya::maps::ProgramArray<T>::borrow_mut(&mut self) -> &mut T
  132. impl<T> core::convert::From<T> for aya::maps::ProgramArray<T>
  133. pub fn aya::maps::ProgramArray<T>::from(t: T) -> T
  134. pub mod aya::maps::bloom_filter
  135. pub struct aya::maps::bloom_filter::BloomFilter<T, V: aya::Pod>
  136. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  137. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  138. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  139. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  140. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  141. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::insert(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  142. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  143. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  144. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  145. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  146. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  147. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  148. impl<T: core::fmt::Debug, V: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::bloom_filter::BloomFilter<T, V>
  149. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  150. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  151. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  152. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  153. impl<T, V> core::marker::Freeze for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Freeze
  154. impl<T, V> core::marker::Send for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Send, V: core::marker::Send
  155. impl<T, V> core::marker::Sync for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sync, V: core::marker::Sync
  156. impl<T, V> core::marker::Unpin for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  157. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  158. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  159. impl<T, U> core::convert::Into<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::From<T>
  160. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::into(self) -> U
  161. impl<T, U> core::convert::TryFrom<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::Into<T>
  162. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = core::convert::Infallible
  163. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  164. impl<T, U> core::convert::TryInto<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::TryFrom<T>
  165. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  166. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  167. impl<T> core::any::Any for aya::maps::bloom_filter::BloomFilter<T, V> where T: 'static + ?core::marker::Sized
  168. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::type_id(&self) -> core::any::TypeId
  169. impl<T> core::borrow::Borrow<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  170. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow(&self) -> &T
  171. impl<T> core::borrow::BorrowMut<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  172. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow_mut(&mut self) -> &mut T
  173. impl<T> core::convert::From<T> for aya::maps::bloom_filter::BloomFilter<T, V>
  174. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::from(t: T) -> T
  175. pub mod aya::maps::hash_map
  176. pub struct aya::maps::hash_map::HashMap<T, K, V>
  177. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  178. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  179. pub fn aya::maps::hash_map::HashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, V, Self>
  180. pub fn aya::maps::hash_map::HashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  181. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  182. pub fn aya::maps::hash_map::HashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  183. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  184. pub fn aya::maps::hash_map::HashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  185. pub fn aya::maps::hash_map::HashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  186. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  187. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  188. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  189. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  190. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  191. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  192. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  193. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  194. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  195. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  196. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  197. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  198. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::hash_map::HashMap<T, K, V>
  199. pub fn aya::maps::hash_map::HashMap<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  200. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Freeze
  201. impl<T, K, V> core::marker::Send for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  202. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  203. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  204. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  205. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  206. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::From<T>
  207. pub fn aya::maps::hash_map::HashMap<T, K, V>::into(self) -> U
  208. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::Into<T>
  209. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = core::convert::Infallible
  210. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  211. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::TryFrom<T>
  212. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  213. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  214. impl<T> core::any::Any for aya::maps::hash_map::HashMap<T, K, V> where T: 'static + ?core::marker::Sized
  215. pub fn aya::maps::hash_map::HashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  216. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  217. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow(&self) -> &T
  218. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  219. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  220. impl<T> core::convert::From<T> for aya::maps::hash_map::HashMap<T, K, V>
  221. pub fn aya::maps::hash_map::HashMap<T, K, V>::from(t: T) -> T
  222. pub struct aya::maps::hash_map::PerCpuHashMap<T, K: aya::Pod, V: aya::Pod>
  223. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  224. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  225. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues<V>, Self>
  226. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  227. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  228. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  229. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  230. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  231. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  232. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  233. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  234. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  235. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  236. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  237. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  238. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  239. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  240. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  241. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  242. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  243. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  244. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Freeze
  245. impl<T, K, V> core::marker::Send for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  246. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  247. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  248. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  249. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  250. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::From<T>
  251. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::into(self) -> U
  252. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::Into<T>
  253. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = core::convert::Infallible
  254. pub fn aya::maps::hash_map::PerCpuHashMap<T, 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::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::TryFrom<T>
  256. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  257. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  258. impl<T> core::any::Any for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: 'static + ?core::marker::Sized
  259. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  260. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  261. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow(&self) -> &T
  262. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  263. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  264. impl<T> core::convert::From<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  265. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::from(t: T) -> T
  266. pub mod aya::maps::lpm_trie
  267. #[repr(C, packed(1))] pub struct aya::maps::lpm_trie::Key<K: aya::Pod>
  268. impl<K: aya::Pod> aya::maps::lpm_trie::Key<K>
  269. pub fn aya::maps::lpm_trie::Key<K>::data(&self) -> K
  270. pub fn aya::maps::lpm_trie::Key<K>::new(prefix_len: u32, data: K) -> Self
  271. pub fn aya::maps::lpm_trie::Key<K>::prefix_len(&self) -> u32
  272. impl<K: aya::Pod> aya::Pod for aya::maps::lpm_trie::Key<K>
  273. impl<K: aya::Pod> core::clone::Clone for aya::maps::lpm_trie::Key<K>
  274. pub fn aya::maps::lpm_trie::Key<K>::clone(&self) -> Self
  275. impl<K: aya::Pod> core::marker::Copy for aya::maps::lpm_trie::Key<K>
  276. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  277. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  278. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  279. impl<K> core::marker::Freeze for aya::maps::lpm_trie::Key<K> where K: core::marker::Freeze
  280. impl<K> core::marker::Send for aya::maps::lpm_trie::Key<K> where K: core::marker::Send
  281. impl<K> core::marker::Sync for aya::maps::lpm_trie::Key<K> where K: core::marker::Sync
  282. impl<K> core::marker::Unpin for aya::maps::lpm_trie::Key<K> where K: core::marker::Unpin
  283. impl<K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::RefUnwindSafe
  284. impl<K> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::UnwindSafe
  285. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::From<T>
  286. pub fn aya::maps::lpm_trie::Key<K>::into(self) -> U
  287. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::Into<T>
  288. pub type aya::maps::lpm_trie::Key<K>::Error = core::convert::Infallible
  289. pub fn aya::maps::lpm_trie::Key<K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  290. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::TryFrom<T>
  291. pub type aya::maps::lpm_trie::Key<K>::Error = <U as core::convert::TryFrom<T>>::Error
  292. pub fn aya::maps::lpm_trie::Key<K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  293. impl<T> alloc::borrow::ToOwned for aya::maps::lpm_trie::Key<K> where T: core::clone::Clone
  294. pub type aya::maps::lpm_trie::Key<K>::Owned = T
  295. pub fn aya::maps::lpm_trie::Key<K>::clone_into(&self, target: &mut T)
  296. pub fn aya::maps::lpm_trie::Key<K>::to_owned(&self) -> T
  297. impl<T> core::any::Any for aya::maps::lpm_trie::Key<K> where T: 'static + ?core::marker::Sized
  298. pub fn aya::maps::lpm_trie::Key<K>::type_id(&self) -> core::any::TypeId
  299. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::Key<K> where T: ?core::marker::Sized
  300. pub fn aya::maps::lpm_trie::Key<K>::borrow(&self) -> &T
  301. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::Key<K> where T: ?core::marker::Sized
  302. pub fn aya::maps::lpm_trie::Key<K>::borrow_mut(&mut self) -> &mut T
  303. impl<T> core::clone::CloneToUninit for aya::maps::lpm_trie::Key<K> where T: core::clone::Clone
  304. pub unsafe fn aya::maps::lpm_trie::Key<K>::clone_to_uninit(&self, dest: *mut u8)
  305. impl<T> core::convert::From<T> for aya::maps::lpm_trie::Key<K>
  306. pub fn aya::maps::lpm_trie::Key<K>::from(t: T) -> T
  307. pub struct aya::maps::lpm_trie::LpmTrie<T, K, V>
  308. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  309. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  310. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key<K>, V, Self>
  311. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key<K>>
  312. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  313. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  314. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  315. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::insert(&mut self, key: &aya::maps::lpm_trie::Key<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  316. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::remove(&mut self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<(), aya::maps::MapError>
  317. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  318. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  319. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  320. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  321. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  322. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  323. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  324. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  325. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  326. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  327. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  328. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  329. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::lpm_trie::LpmTrie<T, K, V>
  330. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  331. impl<T, K, V> core::marker::Freeze for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Freeze
  332. impl<T, K, V> core::marker::Send for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  333. impl<T, K, V> core::marker::Sync for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  334. impl<T, K, V> core::marker::Unpin for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  335. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  336. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  337. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::From<T>
  338. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::into(self) -> U
  339. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::Into<T>
  340. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = core::convert::Infallible
  341. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::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::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::TryFrom<T>
  343. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  344. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  345. impl<T> core::any::Any for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: 'static + ?core::marker::Sized
  346. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::type_id(&self) -> core::any::TypeId
  347. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  348. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow(&self) -> &T
  349. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  350. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow_mut(&mut self) -> &mut T
  351. impl<T> core::convert::From<T> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  352. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::from(t: T) -> T
  353. pub mod aya::maps::perf
  354. pub enum aya::maps::perf::PerfBufferError
  355. pub aya::maps::perf::PerfBufferError::IOError(std::io::error::Error)
  356. pub aya::maps::perf::PerfBufferError::InvalidPageCount
  357. pub aya::maps::perf::PerfBufferError::InvalidPageCount::page_count: usize
  358. pub aya::maps::perf::PerfBufferError::MMapError
  359. pub aya::maps::perf::PerfBufferError::MMapError::io_error: std::io::error::Error
  360. pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded
  361. pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded::size: usize
  362. pub aya::maps::perf::PerfBufferError::NoBuffers
  363. pub aya::maps::perf::PerfBufferError::OpenError
  364. pub aya::maps::perf::PerfBufferError::OpenError::io_error: std::io::error::Error
  365. pub aya::maps::perf::PerfBufferError::PerfEventEnableError
  366. pub aya::maps::perf::PerfBufferError::PerfEventEnableError::io_error: std::io::error::Error
  367. impl core::convert::From<std::io::error::Error> for aya::maps::perf::PerfBufferError
  368. pub fn aya::maps::perf::PerfBufferError::from(source: std::io::error::Error) -> Self
  369. impl core::error::Error for aya::maps::perf::PerfBufferError
  370. pub fn aya::maps::perf::PerfBufferError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  371. impl core::fmt::Debug for aya::maps::perf::PerfBufferError
  372. pub fn aya::maps::perf::PerfBufferError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  373. impl core::fmt::Display for aya::maps::perf::PerfBufferError
  374. pub fn aya::maps::perf::PerfBufferError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  375. impl core::marker::Freeze for aya::maps::perf::PerfBufferError
  376. impl core::marker::Send for aya::maps::perf::PerfBufferError
  377. impl core::marker::Sync for aya::maps::perf::PerfBufferError
  378. impl core::marker::Unpin for aya::maps::perf::PerfBufferError
  379. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfBufferError
  380. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfBufferError
  381. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfBufferError where U: core::convert::From<T>
  382. pub fn aya::maps::perf::PerfBufferError::into(self) -> U
  383. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfBufferError where U: core::convert::Into<T>
  384. pub type aya::maps::perf::PerfBufferError::Error = core::convert::Infallible
  385. pub fn aya::maps::perf::PerfBufferError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  386. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfBufferError where U: core::convert::TryFrom<T>
  387. pub type aya::maps::perf::PerfBufferError::Error = <U as core::convert::TryFrom<T>>::Error
  388. pub fn aya::maps::perf::PerfBufferError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  389. impl<T> alloc::string::ToString for aya::maps::perf::PerfBufferError where T: core::fmt::Display + ?core::marker::Sized
  390. pub fn aya::maps::perf::PerfBufferError::to_string(&self) -> alloc::string::String
  391. impl<T> core::any::Any for aya::maps::perf::PerfBufferError where T: 'static + ?core::marker::Sized
  392. pub fn aya::maps::perf::PerfBufferError::type_id(&self) -> core::any::TypeId
  393. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfBufferError where T: ?core::marker::Sized
  394. pub fn aya::maps::perf::PerfBufferError::borrow(&self) -> &T
  395. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfBufferError where T: ?core::marker::Sized
  396. pub fn aya::maps::perf::PerfBufferError::borrow_mut(&mut self) -> &mut T
  397. impl<T> core::convert::From<T> for aya::maps::perf::PerfBufferError
  398. pub fn aya::maps::perf::PerfBufferError::from(t: T) -> T
  399. pub struct aya::maps::perf::AsyncPerfEventArray<T>
  400. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArray<T>
  401. pub fn aya::maps::perf::AsyncPerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::AsyncPerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  402. pub fn aya::maps::perf::AsyncPerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  403. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  404. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  405. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  406. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  407. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  408. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  409. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  410. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  411. pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  412. impl<T> core::marker::Freeze for aya::maps::perf::AsyncPerfEventArray<T>
  413. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  414. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  415. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArray<T>
  416. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  417. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  418. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::From<T>
  419. pub fn aya::maps::perf::AsyncPerfEventArray<T>::into(self) -> U
  420. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::Into<T>
  421. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = core::convert::Infallible
  422. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  423. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::TryFrom<T>
  424. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  425. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  426. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArray<T> where T: 'static + ?core::marker::Sized
  427. pub fn aya::maps::perf::AsyncPerfEventArray<T>::type_id(&self) -> core::any::TypeId
  428. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: ?core::marker::Sized
  429. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow(&self) -> &T
  430. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: ?core::marker::Sized
  431. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  432. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArray<T>
  433. pub fn aya::maps::perf::AsyncPerfEventArray<T>::from(t: T) -> T
  434. pub struct aya::maps::perf::AsyncPerfEventArrayBuffer<T: core::borrow::BorrowMut<aya::maps::MapData>>
  435. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  436. pub async fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::read_events(&mut self, buffers: &mut [bytes::bytes_mut::BytesMut]) -> core::result::Result<aya::maps::perf::Events, aya::maps::perf::PerfBufferError>
  437. impl<T> core::marker::Freeze for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  438. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  439. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  440. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  441. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  442. impl<T> !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  443. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::From<T>
  444. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::into(self) -> U
  445. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::Into<T>
  446. pub type aya::maps::perf::AsyncPerfEventArrayBuffer<T>::Error = core::convert::Infallible
  447. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  448. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::TryFrom<T>
  449. pub type aya::maps::perf::AsyncPerfEventArrayBuffer<T>::Error = <U as core::convert::TryFrom<T>>::Error
  450. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  451. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: 'static + ?core::marker::Sized
  452. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::type_id(&self) -> core::any::TypeId
  453. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: ?core::marker::Sized
  454. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::borrow(&self) -> &T
  455. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: ?core::marker::Sized
  456. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::borrow_mut(&mut self) -> &mut T
  457. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  458. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::from(t: T) -> T
  459. pub struct aya::maps::perf::Events
  460. pub aya::maps::perf::Events::lost: usize
  461. pub aya::maps::perf::Events::read: usize
  462. impl core::cmp::Eq for aya::maps::perf::Events
  463. impl core::cmp::PartialEq for aya::maps::perf::Events
  464. pub fn aya::maps::perf::Events::eq(&self, other: &aya::maps::perf::Events) -> bool
  465. impl core::fmt::Debug for aya::maps::perf::Events
  466. pub fn aya::maps::perf::Events::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  467. impl core::marker::StructuralPartialEq for aya::maps::perf::Events
  468. impl core::marker::Freeze for aya::maps::perf::Events
  469. impl core::marker::Send for aya::maps::perf::Events
  470. impl core::marker::Sync for aya::maps::perf::Events
  471. impl core::marker::Unpin for aya::maps::perf::Events
  472. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::Events
  473. impl core::panic::unwind_safe::UnwindSafe for aya::maps::perf::Events
  474. impl<Q, K> equivalent::Equivalent<K> for aya::maps::perf::Events where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  475. pub fn aya::maps::perf::Events::equivalent(&self, key: &K) -> bool
  476. impl<T, U> core::convert::Into<U> for aya::maps::perf::Events where U: core::convert::From<T>
  477. pub fn aya::maps::perf::Events::into(self) -> U
  478. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::Events where U: core::convert::Into<T>
  479. pub type aya::maps::perf::Events::Error = core::convert::Infallible
  480. pub fn aya::maps::perf::Events::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  481. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::Events where U: core::convert::TryFrom<T>
  482. pub type aya::maps::perf::Events::Error = <U as core::convert::TryFrom<T>>::Error
  483. pub fn aya::maps::perf::Events::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  484. impl<T> core::any::Any for aya::maps::perf::Events where T: 'static + ?core::marker::Sized
  485. pub fn aya::maps::perf::Events::type_id(&self) -> core::any::TypeId
  486. impl<T> core::borrow::Borrow<T> for aya::maps::perf::Events where T: ?core::marker::Sized
  487. pub fn aya::maps::perf::Events::borrow(&self) -> &T
  488. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::Events where T: ?core::marker::Sized
  489. pub fn aya::maps::perf::Events::borrow_mut(&mut self) -> &mut T
  490. impl<T> core::convert::From<T> for aya::maps::perf::Events
  491. pub fn aya::maps::perf::Events::from(t: T) -> T
  492. pub struct aya::maps::perf::PerfEventArray<T>
  493. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  494. pub fn aya::maps::perf::PerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  495. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  496. pub fn aya::maps::perf::PerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::PerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  497. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  498. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  499. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  500. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  501. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  502. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  503. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  504. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  505. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  506. impl<T> core::marker::Freeze for aya::maps::perf::PerfEventArray<T>
  507. impl<T> core::marker::Send for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  508. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  509. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArray<T>
  510. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  511. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  512. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::From<T>
  513. pub fn aya::maps::perf::PerfEventArray<T>::into(self) -> U
  514. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::Into<T>
  515. pub type aya::maps::perf::PerfEventArray<T>::Error = core::convert::Infallible
  516. pub fn aya::maps::perf::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  517. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::TryFrom<T>
  518. pub type aya::maps::perf::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  519. pub fn aya::maps::perf::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  520. impl<T> core::any::Any for aya::maps::perf::PerfEventArray<T> where T: 'static + ?core::marker::Sized
  521. pub fn aya::maps::perf::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  522. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  523. pub fn aya::maps::perf::PerfEventArray<T>::borrow(&self) -> &T
  524. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  525. pub fn aya::maps::perf::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  526. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArray<T>
  527. pub fn aya::maps::perf::PerfEventArray<T>::from(t: T) -> T
  528. pub struct aya::maps::perf::PerfEventArrayBuffer<T>
  529. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArrayBuffer<T>
  530. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::read_events(&mut self, out_bufs: &mut [bytes::bytes_mut::BytesMut]) -> core::result::Result<aya::maps::perf::Events, aya::maps::perf::PerfBufferError>
  531. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::readable(&self) -> bool
  532. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> std::os::fd::owned::AsFd for aya::maps::perf::PerfEventArrayBuffer<T>
  533. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  534. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::perf::PerfEventArrayBuffer<T>
  535. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  536. impl<T> core::marker::Freeze for aya::maps::perf::PerfEventArrayBuffer<T>
  537. impl<T> core::marker::Send for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  538. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  539. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArrayBuffer<T>
  540. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::panic::unwind_safe::RefUnwindSafe
  541. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::panic::unwind_safe::RefUnwindSafe
  542. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::From<T>
  543. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::into(self) -> U
  544. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::Into<T>
  545. pub type aya::maps::perf::PerfEventArrayBuffer<T>::Error = core::convert::Infallible
  546. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  547. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::TryFrom<T>
  548. pub type aya::maps::perf::PerfEventArrayBuffer<T>::Error = <U as core::convert::TryFrom<T>>::Error
  549. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  550. impl<T> core::any::Any for aya::maps::perf::PerfEventArrayBuffer<T> where T: 'static + ?core::marker::Sized
  551. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::type_id(&self) -> core::any::TypeId
  552. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArrayBuffer<T> where T: ?core::marker::Sized
  553. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::borrow(&self) -> &T
  554. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArrayBuffer<T> where T: ?core::marker::Sized
  555. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::borrow_mut(&mut self) -> &mut T
  556. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArrayBuffer<T>
  557. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::from(t: T) -> T
  558. pub mod aya::maps::queue
  559. pub struct aya::maps::queue::Queue<T, V: aya::Pod>
  560. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  561. pub fn aya::maps::queue::Queue<T, V>::capacity(&self) -> u32
  562. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  563. pub fn aya::maps::queue::Queue<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  564. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  565. pub fn aya::maps::queue::Queue<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  566. pub fn aya::maps::queue::Queue<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  567. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  568. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  569. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  570. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  571. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  572. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  573. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  574. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  575. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  576. impl<T, V> core::marker::Freeze for aya::maps::queue::Queue<T, V> where T: core::marker::Freeze
  577. impl<T, V> core::marker::Send for aya::maps::queue::Queue<T, V> where T: core::marker::Send, V: core::marker::Send
  578. impl<T, V> core::marker::Sync for aya::maps::queue::Queue<T, V> where T: core::marker::Sync, V: core::marker::Sync
  579. impl<T, V> core::marker::Unpin for aya::maps::queue::Queue<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  580. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  581. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  582. impl<T, U> core::convert::Into<U> for aya::maps::queue::Queue<T, V> where U: core::convert::From<T>
  583. pub fn aya::maps::queue::Queue<T, V>::into(self) -> U
  584. impl<T, U> core::convert::TryFrom<U> for aya::maps::queue::Queue<T, V> where U: core::convert::Into<T>
  585. pub type aya::maps::queue::Queue<T, V>::Error = core::convert::Infallible
  586. pub fn aya::maps::queue::Queue<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  587. impl<T, U> core::convert::TryInto<U> for aya::maps::queue::Queue<T, V> where U: core::convert::TryFrom<T>
  588. pub type aya::maps::queue::Queue<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  589. pub fn aya::maps::queue::Queue<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  590. impl<T> core::any::Any for aya::maps::queue::Queue<T, V> where T: 'static + ?core::marker::Sized
  591. pub fn aya::maps::queue::Queue<T, V>::type_id(&self) -> core::any::TypeId
  592. impl<T> core::borrow::Borrow<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  593. pub fn aya::maps::queue::Queue<T, V>::borrow(&self) -> &T
  594. impl<T> core::borrow::BorrowMut<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  595. pub fn aya::maps::queue::Queue<T, V>::borrow_mut(&mut self) -> &mut T
  596. impl<T> core::convert::From<T> for aya::maps::queue::Queue<T, V>
  597. pub fn aya::maps::queue::Queue<T, V>::from(t: T) -> T
  598. pub mod aya::maps::ring_buf
  599. pub struct aya::maps::ring_buf::RingBuf<T>
  600. impl<T> aya::maps::ring_buf::RingBuf<T>
  601. pub fn aya::maps::ring_buf::RingBuf<T>::next(&mut self) -> core::option::Option<aya::maps::ring_buf::RingBufItem<'_>>
  602. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  603. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  604. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  605. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  606. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  607. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  608. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  609. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  610. pub fn aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  611. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::ring_buf::RingBuf<T>
  612. pub fn aya::maps::ring_buf::RingBuf<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  613. impl<T> core::marker::Freeze for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Freeze
  614. impl<T> core::marker::Send for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Send
  615. impl<T> core::marker::Sync for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sync
  616. impl<T> core::marker::Unpin for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Unpin
  617. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::RefUnwindSafe
  618. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::UnwindSafe
  619. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::From<T>
  620. pub fn aya::maps::ring_buf::RingBuf<T>::into(self) -> U
  621. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::Into<T>
  622. pub type aya::maps::ring_buf::RingBuf<T>::Error = core::convert::Infallible
  623. pub fn aya::maps::ring_buf::RingBuf<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  624. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::TryFrom<T>
  625. pub type aya::maps::ring_buf::RingBuf<T>::Error = <U as core::convert::TryFrom<T>>::Error
  626. pub fn aya::maps::ring_buf::RingBuf<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  627. impl<T> core::any::Any for aya::maps::ring_buf::RingBuf<T> where T: 'static + ?core::marker::Sized
  628. pub fn aya::maps::ring_buf::RingBuf<T>::type_id(&self) -> core::any::TypeId
  629. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  630. pub fn aya::maps::ring_buf::RingBuf<T>::borrow(&self) -> &T
  631. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  632. pub fn aya::maps::ring_buf::RingBuf<T>::borrow_mut(&mut self) -> &mut T
  633. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBuf<T>
  634. pub fn aya::maps::ring_buf::RingBuf<T>::from(t: T) -> T
  635. pub struct aya::maps::ring_buf::RingBufItem<'a>
  636. impl core::fmt::Debug for aya::maps::ring_buf::RingBufItem<'_>
  637. pub fn aya::maps::ring_buf::RingBufItem<'_>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  638. impl core::ops::deref::Deref for aya::maps::ring_buf::RingBufItem<'_>
  639. pub type aya::maps::ring_buf::RingBufItem<'_>::Target = [u8]
  640. pub fn aya::maps::ring_buf::RingBufItem<'_>::deref(&self) -> &Self::Target
  641. impl core::ops::drop::Drop for aya::maps::ring_buf::RingBufItem<'_>
  642. pub fn aya::maps::ring_buf::RingBufItem<'_>::drop(&mut self)
  643. impl<'a> core::marker::Freeze for aya::maps::ring_buf::RingBufItem<'a>
  644. impl<'a> core::marker::Send for aya::maps::ring_buf::RingBufItem<'a>
  645. impl<'a> core::marker::Sync for aya::maps::ring_buf::RingBufItem<'a>
  646. impl<'a> core::marker::Unpin for aya::maps::ring_buf::RingBufItem<'a>
  647. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBufItem<'a>
  648. impl<'a> !core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBufItem<'a>
  649. impl<P, T> core::ops::deref::Receiver for aya::maps::ring_buf::RingBufItem<'a> where P: core::ops::deref::Deref<Target = T> + ?core::marker::Sized, T: ?core::marker::Sized
  650. pub type aya::maps::ring_buf::RingBufItem<'a>::Target = T
  651. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::From<T>
  652. pub fn aya::maps::ring_buf::RingBufItem<'a>::into(self) -> U
  653. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::Into<T>
  654. pub type aya::maps::ring_buf::RingBufItem<'a>::Error = core::convert::Infallible
  655. pub fn aya::maps::ring_buf::RingBufItem<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  656. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::TryFrom<T>
  657. pub type aya::maps::ring_buf::RingBufItem<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  658. pub fn aya::maps::ring_buf::RingBufItem<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  659. impl<T> core::any::Any for aya::maps::ring_buf::RingBufItem<'a> where T: 'static + ?core::marker::Sized
  660. pub fn aya::maps::ring_buf::RingBufItem<'a>::type_id(&self) -> core::any::TypeId
  661. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBufItem<'a> where T: ?core::marker::Sized
  662. pub fn aya::maps::ring_buf::RingBufItem<'a>::borrow(&self) -> &T
  663. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBufItem<'a> where T: ?core::marker::Sized
  664. pub fn aya::maps::ring_buf::RingBufItem<'a>::borrow_mut(&mut self) -> &mut T
  665. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBufItem<'a>
  666. pub fn aya::maps::ring_buf::RingBufItem<'a>::from(t: T) -> T
  667. pub mod aya::maps::sock
  668. pub struct aya::maps::sock::SockHash<T, K>
  669. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  670. pub fn aya::maps::SockHash<T, K>::fd(&self) -> &aya::maps::sock::SockMapFd
  671. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K, flags: u64) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  672. pub fn aya::maps::SockHash<T, K>::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self>
  673. pub fn aya::maps::SockHash<T, K>::keys(&self) -> aya::maps::MapKeys<'_, K>
  674. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::SockHash<T, V>
  675. pub fn aya::maps::SockHash<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  676. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  677. pub fn aya::maps::SockHash<T, K>::insert<I: std::os::fd::raw::AsRawFd>(&mut self, key: impl core::borrow::Borrow<K>, value: I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  678. pub fn aya::maps::SockHash<T, K>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  679. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  680. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  681. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  682. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  683. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  684. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  685. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  686. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  687. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  688. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  689. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  690. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  691. impl<T, K> core::marker::Freeze for aya::maps::SockHash<T, K> where T: core::marker::Freeze
  692. impl<T, K> core::marker::Send for aya::maps::SockHash<T, K> where T: core::marker::Send, K: core::marker::Send
  693. impl<T, K> core::marker::Sync for aya::maps::SockHash<T, K> where T: core::marker::Sync, K: core::marker::Sync
  694. impl<T, K> core::marker::Unpin for aya::maps::SockHash<T, K> where T: core::marker::Unpin, K: core::marker::Unpin
  695. impl<T, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe
  696. impl<T, K> core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe
  697. impl<T, U> core::convert::Into<U> for aya::maps::SockHash<T, K> where U: core::convert::From<T>
  698. pub fn aya::maps::SockHash<T, K>::into(self) -> U
  699. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockHash<T, K> where U: core::convert::Into<T>
  700. pub type aya::maps::SockHash<T, K>::Error = core::convert::Infallible
  701. pub fn aya::maps::SockHash<T, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  702. impl<T, U> core::convert::TryInto<U> for aya::maps::SockHash<T, K> where U: core::convert::TryFrom<T>
  703. pub type aya::maps::SockHash<T, K>::Error = <U as core::convert::TryFrom<T>>::Error
  704. pub fn aya::maps::SockHash<T, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  705. impl<T> core::any::Any for aya::maps::SockHash<T, K> where T: 'static + ?core::marker::Sized
  706. pub fn aya::maps::SockHash<T, K>::type_id(&self) -> core::any::TypeId
  707. impl<T> core::borrow::Borrow<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  708. pub fn aya::maps::SockHash<T, K>::borrow(&self) -> &T
  709. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  710. pub fn aya::maps::SockHash<T, K>::borrow_mut(&mut self) -> &mut T
  711. impl<T> core::convert::From<T> for aya::maps::SockHash<T, K>
  712. pub fn aya::maps::SockHash<T, K>::from(t: T) -> T
  713. pub struct aya::maps::sock::SockMap<T>
  714. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  715. pub fn aya::maps::SockMap<T>::fd(&self) -> &aya::maps::sock::SockMapFd
  716. pub fn aya::maps::SockMap<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  717. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  718. pub fn aya::maps::SockMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  719. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  720. pub fn aya::maps::SockMap<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  721. pub fn aya::maps::SockMap<T>::set<I: std::os::fd::raw::AsRawFd>(&mut self, index: u32, socket: &I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  722. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  723. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  724. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  725. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  726. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  727. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  728. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  729. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  730. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  731. impl<T> core::marker::Freeze for aya::maps::SockMap<T> where T: core::marker::Freeze
  732. impl<T> core::marker::Send for aya::maps::SockMap<T> where T: core::marker::Send
  733. impl<T> core::marker::Sync for aya::maps::SockMap<T> where T: core::marker::Sync
  734. impl<T> core::marker::Unpin for aya::maps::SockMap<T> where T: core::marker::Unpin
  735. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  736. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::UnwindSafe
  737. impl<T, U> core::convert::Into<U> for aya::maps::SockMap<T> where U: core::convert::From<T>
  738. pub fn aya::maps::SockMap<T>::into(self) -> U
  739. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockMap<T> where U: core::convert::Into<T>
  740. pub type aya::maps::SockMap<T>::Error = core::convert::Infallible
  741. pub fn aya::maps::SockMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  742. impl<T, U> core::convert::TryInto<U> for aya::maps::SockMap<T> where U: core::convert::TryFrom<T>
  743. pub type aya::maps::SockMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  744. pub fn aya::maps::SockMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  745. impl<T> core::any::Any for aya::maps::SockMap<T> where T: 'static + ?core::marker::Sized
  746. pub fn aya::maps::SockMap<T>::type_id(&self) -> core::any::TypeId
  747. impl<T> core::borrow::Borrow<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  748. pub fn aya::maps::SockMap<T>::borrow(&self) -> &T
  749. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  750. pub fn aya::maps::SockMap<T>::borrow_mut(&mut self) -> &mut T
  751. impl<T> core::convert::From<T> for aya::maps::SockMap<T>
  752. pub fn aya::maps::SockMap<T>::from(t: T) -> T
  753. #[repr(transparent)] pub struct aya::maps::sock::SockMapFd(_)
  754. impl aya::maps::sock::SockMapFd
  755. pub fn aya::maps::sock::SockMapFd::try_clone(&self) -> std::io::error::Result<Self>
  756. impl std::os::fd::owned::AsFd for aya::maps::sock::SockMapFd
  757. pub fn aya::maps::sock::SockMapFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  758. impl core::marker::Freeze for aya::maps::sock::SockMapFd
  759. impl core::marker::Send for aya::maps::sock::SockMapFd
  760. impl core::marker::Sync for aya::maps::sock::SockMapFd
  761. impl core::marker::Unpin for aya::maps::sock::SockMapFd
  762. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::sock::SockMapFd
  763. impl core::panic::unwind_safe::UnwindSafe for aya::maps::sock::SockMapFd
  764. impl<T, U> core::convert::Into<U> for aya::maps::sock::SockMapFd where U: core::convert::From<T>
  765. pub fn aya::maps::sock::SockMapFd::into(self) -> U
  766. impl<T, U> core::convert::TryFrom<U> for aya::maps::sock::SockMapFd where U: core::convert::Into<T>
  767. pub type aya::maps::sock::SockMapFd::Error = core::convert::Infallible
  768. pub fn aya::maps::sock::SockMapFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  769. impl<T, U> core::convert::TryInto<U> for aya::maps::sock::SockMapFd where U: core::convert::TryFrom<T>
  770. pub type aya::maps::sock::SockMapFd::Error = <U as core::convert::TryFrom<T>>::Error
  771. pub fn aya::maps::sock::SockMapFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  772. impl<T> core::any::Any for aya::maps::sock::SockMapFd where T: 'static + ?core::marker::Sized
  773. pub fn aya::maps::sock::SockMapFd::type_id(&self) -> core::any::TypeId
  774. impl<T> core::borrow::Borrow<T> for aya::maps::sock::SockMapFd where T: ?core::marker::Sized
  775. pub fn aya::maps::sock::SockMapFd::borrow(&self) -> &T
  776. impl<T> core::borrow::BorrowMut<T> for aya::maps::sock::SockMapFd where T: ?core::marker::Sized
  777. pub fn aya::maps::sock::SockMapFd::borrow_mut(&mut self) -> &mut T
  778. impl<T> core::convert::From<T> for aya::maps::sock::SockMapFd
  779. pub fn aya::maps::sock::SockMapFd::from(t: T) -> T
  780. pub mod aya::maps::stack
  781. pub struct aya::maps::stack::Stack<T, V: aya::Pod>
  782. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  783. pub fn aya::maps::stack::Stack<T, V>::capacity(&self) -> u32
  784. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  785. pub fn aya::maps::stack::Stack<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  786. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  787. pub fn aya::maps::stack::Stack<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  788. pub fn aya::maps::stack::Stack<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  789. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  790. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  791. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  792. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  793. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  794. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  795. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  796. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  797. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  798. impl<T, V> core::marker::Freeze for aya::maps::stack::Stack<T, V> where T: core::marker::Freeze
  799. impl<T, V> core::marker::Send for aya::maps::stack::Stack<T, V> where T: core::marker::Send, V: core::marker::Send
  800. impl<T, V> core::marker::Sync for aya::maps::stack::Stack<T, V> where T: core::marker::Sync, V: core::marker::Sync
  801. impl<T, V> core::marker::Unpin for aya::maps::stack::Stack<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  802. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  803. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  804. impl<T, U> core::convert::Into<U> for aya::maps::stack::Stack<T, V> where U: core::convert::From<T>
  805. pub fn aya::maps::stack::Stack<T, V>::into(self) -> U
  806. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack::Stack<T, V> where U: core::convert::Into<T>
  807. pub type aya::maps::stack::Stack<T, V>::Error = core::convert::Infallible
  808. pub fn aya::maps::stack::Stack<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  809. impl<T, U> core::convert::TryInto<U> for aya::maps::stack::Stack<T, V> where U: core::convert::TryFrom<T>
  810. pub type aya::maps::stack::Stack<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  811. pub fn aya::maps::stack::Stack<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  812. impl<T> core::any::Any for aya::maps::stack::Stack<T, V> where T: 'static + ?core::marker::Sized
  813. pub fn aya::maps::stack::Stack<T, V>::type_id(&self) -> core::any::TypeId
  814. impl<T> core::borrow::Borrow<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  815. pub fn aya::maps::stack::Stack<T, V>::borrow(&self) -> &T
  816. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  817. pub fn aya::maps::stack::Stack<T, V>::borrow_mut(&mut self) -> &mut T
  818. impl<T> core::convert::From<T> for aya::maps::stack::Stack<T, V>
  819. pub fn aya::maps::stack::Stack<T, V>::from(t: T) -> T
  820. pub mod aya::maps::stack_trace
  821. pub struct aya::maps::stack_trace::StackFrame
  822. pub aya::maps::stack_trace::StackFrame::ip: u64
  823. impl core::marker::Freeze for aya::maps::stack_trace::StackFrame
  824. impl core::marker::Send for aya::maps::stack_trace::StackFrame
  825. impl core::marker::Sync for aya::maps::stack_trace::StackFrame
  826. impl core::marker::Unpin for aya::maps::stack_trace::StackFrame
  827. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackFrame
  828. impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackFrame
  829. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackFrame where U: core::convert::From<T>
  830. pub fn aya::maps::stack_trace::StackFrame::into(self) -> U
  831. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackFrame where U: core::convert::Into<T>
  832. pub type aya::maps::stack_trace::StackFrame::Error = core::convert::Infallible
  833. pub fn aya::maps::stack_trace::StackFrame::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::maps::stack_trace::StackFrame where U: core::convert::TryFrom<T>
  835. pub type aya::maps::stack_trace::StackFrame::Error = <U as core::convert::TryFrom<T>>::Error
  836. pub fn aya::maps::stack_trace::StackFrame::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  837. impl<T> core::any::Any for aya::maps::stack_trace::StackFrame where T: 'static + ?core::marker::Sized
  838. pub fn aya::maps::stack_trace::StackFrame::type_id(&self) -> core::any::TypeId
  839. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackFrame where T: ?core::marker::Sized
  840. pub fn aya::maps::stack_trace::StackFrame::borrow(&self) -> &T
  841. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackFrame where T: ?core::marker::Sized
  842. pub fn aya::maps::stack_trace::StackFrame::borrow_mut(&mut self) -> &mut T
  843. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackFrame
  844. pub fn aya::maps::stack_trace::StackFrame::from(t: T) -> T
  845. pub struct aya::maps::stack_trace::StackTrace
  846. pub aya::maps::stack_trace::StackTrace::id: u32
  847. impl aya::maps::stack_trace::StackTrace
  848. pub fn aya::maps::stack_trace::StackTrace::frames(&self) -> &[aya::maps::stack_trace::StackFrame]
  849. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  850. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  851. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  852. impl core::marker::Freeze for aya::maps::stack_trace::StackTrace
  853. impl core::marker::Send for aya::maps::stack_trace::StackTrace
  854. impl core::marker::Sync for aya::maps::stack_trace::StackTrace
  855. impl core::marker::Unpin for aya::maps::stack_trace::StackTrace
  856. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTrace
  857. impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTrace
  858. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTrace where U: core::convert::From<T>
  859. pub fn aya::maps::stack_trace::StackTrace::into(self) -> U
  860. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTrace where U: core::convert::Into<T>
  861. pub type aya::maps::stack_trace::StackTrace::Error = core::convert::Infallible
  862. pub fn aya::maps::stack_trace::StackTrace::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  863. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTrace where U: core::convert::TryFrom<T>
  864. pub type aya::maps::stack_trace::StackTrace::Error = <U as core::convert::TryFrom<T>>::Error
  865. pub fn aya::maps::stack_trace::StackTrace::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  866. impl<T> core::any::Any for aya::maps::stack_trace::StackTrace where T: 'static + ?core::marker::Sized
  867. pub fn aya::maps::stack_trace::StackTrace::type_id(&self) -> core::any::TypeId
  868. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTrace where T: ?core::marker::Sized
  869. pub fn aya::maps::stack_trace::StackTrace::borrow(&self) -> &T
  870. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTrace where T: ?core::marker::Sized
  871. pub fn aya::maps::stack_trace::StackTrace::borrow_mut(&mut self) -> &mut T
  872. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTrace
  873. pub fn aya::maps::stack_trace::StackTrace::from(t: T) -> T
  874. pub struct aya::maps::stack_trace::StackTraceMap<T>
  875. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  876. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, stack_id: &u32, flags: u64) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  877. pub fn aya::maps::stack_trace::StackTraceMap<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self>
  878. pub fn aya::maps::stack_trace::StackTraceMap<T>::stack_ids(&self) -> aya::maps::MapKeys<'_, u32>
  879. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  880. pub fn aya::maps::stack_trace::StackTraceMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  881. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  882. pub fn aya::maps::stack_trace::StackTraceMap<T>::remove(&mut self, stack_id: &u32) -> core::result::Result<(), aya::maps::MapError>
  883. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  884. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  885. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  886. impl<'a, T: core::borrow::Borrow<aya::maps::MapData>> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap<T>
  887. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::IntoIter = aya::maps::MapIter<'a, u32, aya::maps::stack_trace::StackTrace, aya::maps::stack_trace::StackTraceMap<T>>
  888. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError>
  889. pub fn &'a aya::maps::stack_trace::StackTraceMap<T>::into_iter(self) -> Self::IntoIter
  890. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  891. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  892. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  893. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  894. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  895. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  896. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  897. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  898. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  899. impl<T: core::fmt::Debug> core::fmt::Debug for aya::maps::stack_trace::StackTraceMap<T>
  900. pub fn aya::maps::stack_trace::StackTraceMap<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  901. impl<T> core::marker::Freeze for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Freeze
  902. impl<T> core::marker::Send for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Send
  903. impl<T> core::marker::Sync for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sync
  904. impl<T> core::marker::Unpin for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Unpin
  905. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  906. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::UnwindSafe
  907. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::From<T>
  908. pub fn aya::maps::stack_trace::StackTraceMap<T>::into(self) -> U
  909. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::Into<T>
  910. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = core::convert::Infallible
  911. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  912. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::TryFrom<T>
  913. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  914. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  915. impl<T> core::any::Any for aya::maps::stack_trace::StackTraceMap<T> where T: 'static + ?core::marker::Sized
  916. pub fn aya::maps::stack_trace::StackTraceMap<T>::type_id(&self) -> core::any::TypeId
  917. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  918. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow(&self) -> &T
  919. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  920. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow_mut(&mut self) -> &mut T
  921. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTraceMap<T>
  922. pub fn aya::maps::stack_trace::StackTraceMap<T>::from(t: T) -> T
  923. pub mod aya::maps::xdp
  924. pub enum aya::maps::xdp::XdpMapError
  925. pub aya::maps::xdp::XdpMapError::ChainedProgramNotSupported
  926. pub aya::maps::xdp::XdpMapError::MapError(aya::maps::MapError)
  927. impl core::convert::From<aya::maps::MapError> for aya::maps::xdp::XdpMapError
  928. pub fn aya::maps::xdp::XdpMapError::from(source: aya::maps::MapError) -> Self
  929. impl core::error::Error for aya::maps::xdp::XdpMapError
  930. pub fn aya::maps::xdp::XdpMapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  931. impl core::fmt::Debug for aya::maps::xdp::XdpMapError
  932. pub fn aya::maps::xdp::XdpMapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  933. impl core::fmt::Display for aya::maps::xdp::XdpMapError
  934. pub fn aya::maps::xdp::XdpMapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  935. impl core::marker::Freeze for aya::maps::xdp::XdpMapError
  936. impl core::marker::Send for aya::maps::xdp::XdpMapError
  937. impl core::marker::Sync for aya::maps::xdp::XdpMapError
  938. impl core::marker::Unpin for aya::maps::xdp::XdpMapError
  939. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::xdp::XdpMapError
  940. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::xdp::XdpMapError
  941. impl<T, U> core::convert::Into<U> for aya::maps::xdp::XdpMapError where U: core::convert::From<T>
  942. pub fn aya::maps::xdp::XdpMapError::into(self) -> U
  943. impl<T, U> core::convert::TryFrom<U> for aya::maps::xdp::XdpMapError where U: core::convert::Into<T>
  944. pub type aya::maps::xdp::XdpMapError::Error = core::convert::Infallible
  945. pub fn aya::maps::xdp::XdpMapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  946. impl<T, U> core::convert::TryInto<U> for aya::maps::xdp::XdpMapError where U: core::convert::TryFrom<T>
  947. pub type aya::maps::xdp::XdpMapError::Error = <U as core::convert::TryFrom<T>>::Error
  948. pub fn aya::maps::xdp::XdpMapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  949. impl<T> alloc::string::ToString for aya::maps::xdp::XdpMapError where T: core::fmt::Display + ?core::marker::Sized
  950. pub fn aya::maps::xdp::XdpMapError::to_string(&self) -> alloc::string::String
  951. impl<T> core::any::Any for aya::maps::xdp::XdpMapError where T: 'static + ?core::marker::Sized
  952. pub fn aya::maps::xdp::XdpMapError::type_id(&self) -> core::any::TypeId
  953. impl<T> core::borrow::Borrow<T> for aya::maps::xdp::XdpMapError where T: ?core::marker::Sized
  954. pub fn aya::maps::xdp::XdpMapError::borrow(&self) -> &T
  955. impl<T> core::borrow::BorrowMut<T> for aya::maps::xdp::XdpMapError where T: ?core::marker::Sized
  956. pub fn aya::maps::xdp::XdpMapError::borrow_mut(&mut self) -> &mut T
  957. impl<T> core::convert::From<T> for aya::maps::xdp::XdpMapError
  958. pub fn aya::maps::xdp::XdpMapError::from(t: T) -> T
  959. pub struct aya::maps::xdp::CpuMap<T>
  960. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  961. pub fn aya::maps::CpuMap<T>::get(&self, cpu_index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>
  962. pub fn aya::maps::CpuMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>> + '_
  963. pub fn aya::maps::CpuMap<T>::len(&self) -> u32
  964. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  965. pub fn aya::maps::CpuMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  966. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  967. pub fn aya::maps::CpuMap<T>::set(&mut self, cpu_index: u32, queue_size: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  968. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  969. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  970. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  971. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  972. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  973. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  974. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  975. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  976. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  977. impl<T> core::marker::Freeze for aya::maps::CpuMap<T> where T: core::marker::Freeze
  978. impl<T> core::marker::Send for aya::maps::CpuMap<T> where T: core::marker::Send
  979. impl<T> core::marker::Sync for aya::maps::CpuMap<T> where T: core::marker::Sync
  980. impl<T> core::marker::Unpin for aya::maps::CpuMap<T> where T: core::marker::Unpin
  981. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  982. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::UnwindSafe
  983. impl<T, U> core::convert::Into<U> for aya::maps::CpuMap<T> where U: core::convert::From<T>
  984. pub fn aya::maps::CpuMap<T>::into(self) -> U
  985. impl<T, U> core::convert::TryFrom<U> for aya::maps::CpuMap<T> where U: core::convert::Into<T>
  986. pub type aya::maps::CpuMap<T>::Error = core::convert::Infallible
  987. pub fn aya::maps::CpuMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  988. impl<T, U> core::convert::TryInto<U> for aya::maps::CpuMap<T> where U: core::convert::TryFrom<T>
  989. pub type aya::maps::CpuMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  990. pub fn aya::maps::CpuMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  991. impl<T> core::any::Any for aya::maps::CpuMap<T> where T: 'static + ?core::marker::Sized
  992. pub fn aya::maps::CpuMap<T>::type_id(&self) -> core::any::TypeId
  993. impl<T> core::borrow::Borrow<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  994. pub fn aya::maps::CpuMap<T>::borrow(&self) -> &T
  995. impl<T> core::borrow::BorrowMut<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  996. pub fn aya::maps::CpuMap<T>::borrow_mut(&mut self) -> &mut T
  997. impl<T> core::convert::From<T> for aya::maps::CpuMap<T>
  998. pub fn aya::maps::CpuMap<T>::from(t: T) -> T
  999. pub struct aya::maps::xdp::DevMap<T>
  1000. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1001. pub fn aya::maps::DevMap<T>::get(&self, index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1002. pub fn aya::maps::DevMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>> + '_
  1003. pub fn aya::maps::DevMap<T>::len(&self) -> u32
  1004. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1005. pub fn aya::maps::DevMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1006. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  1007. pub fn aya::maps::DevMap<T>::set(&mut self, index: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1008. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1009. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1010. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1011. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1012. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1013. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1014. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1015. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1016. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1017. impl<T> core::marker::Freeze for aya::maps::DevMap<T> where T: core::marker::Freeze
  1018. impl<T> core::marker::Send for aya::maps::DevMap<T> where T: core::marker::Send
  1019. impl<T> core::marker::Sync for aya::maps::DevMap<T> where T: core::marker::Sync
  1020. impl<T> core::marker::Unpin for aya::maps::DevMap<T> where T: core::marker::Unpin
  1021. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1022. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1023. impl<T, U> core::convert::Into<U> for aya::maps::DevMap<T> where U: core::convert::From<T>
  1024. pub fn aya::maps::DevMap<T>::into(self) -> U
  1025. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMap<T> where U: core::convert::Into<T>
  1026. pub type aya::maps::DevMap<T>::Error = core::convert::Infallible
  1027. pub fn aya::maps::DevMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1028. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMap<T> where U: core::convert::TryFrom<T>
  1029. pub type aya::maps::DevMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1030. pub fn aya::maps::DevMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1031. impl<T> core::any::Any for aya::maps::DevMap<T> where T: 'static + ?core::marker::Sized
  1032. pub fn aya::maps::DevMap<T>::type_id(&self) -> core::any::TypeId
  1033. impl<T> core::borrow::Borrow<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1034. pub fn aya::maps::DevMap<T>::borrow(&self) -> &T
  1035. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1036. pub fn aya::maps::DevMap<T>::borrow_mut(&mut self) -> &mut T
  1037. impl<T> core::convert::From<T> for aya::maps::DevMap<T>
  1038. pub fn aya::maps::DevMap<T>::from(t: T) -> T
  1039. pub struct aya::maps::xdp::DevMapHash<T>
  1040. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1041. pub fn aya::maps::DevMapHash<T>::get(&self, key: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1042. pub fn aya::maps::DevMapHash<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::xdp::dev_map::DevMapValue, Self>
  1043. pub fn aya::maps::DevMapHash<T>::keys(&self) -> aya::maps::MapKeys<'_, u32>
  1044. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1045. pub fn aya::maps::DevMapHash<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1046. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1047. pub fn aya::maps::DevMapHash<T>::insert(&mut self, key: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1048. pub fn aya::maps::DevMapHash<T>::remove(&mut self, key: u32) -> core::result::Result<(), aya::maps::MapError>
  1049. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1050. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1051. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1052. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1053. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1054. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1055. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1056. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1057. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1058. impl<T> core::marker::Freeze for aya::maps::DevMapHash<T> where T: core::marker::Freeze
  1059. impl<T> core::marker::Send for aya::maps::DevMapHash<T> where T: core::marker::Send
  1060. impl<T> core::marker::Sync for aya::maps::DevMapHash<T> where T: core::marker::Sync
  1061. impl<T> core::marker::Unpin for aya::maps::DevMapHash<T> where T: core::marker::Unpin
  1062. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1063. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::UnwindSafe
  1064. impl<T, U> core::convert::Into<U> for aya::maps::DevMapHash<T> where U: core::convert::From<T>
  1065. pub fn aya::maps::DevMapHash<T>::into(self) -> U
  1066. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMapHash<T> where U: core::convert::Into<T>
  1067. pub type aya::maps::DevMapHash<T>::Error = core::convert::Infallible
  1068. pub fn aya::maps::DevMapHash<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1069. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMapHash<T> where U: core::convert::TryFrom<T>
  1070. pub type aya::maps::DevMapHash<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1071. pub fn aya::maps::DevMapHash<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1072. impl<T> core::any::Any for aya::maps::DevMapHash<T> where T: 'static + ?core::marker::Sized
  1073. pub fn aya::maps::DevMapHash<T>::type_id(&self) -> core::any::TypeId
  1074. impl<T> core::borrow::Borrow<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1075. pub fn aya::maps::DevMapHash<T>::borrow(&self) -> &T
  1076. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1077. pub fn aya::maps::DevMapHash<T>::borrow_mut(&mut self) -> &mut T
  1078. impl<T> core::convert::From<T> for aya::maps::DevMapHash<T>
  1079. pub fn aya::maps::DevMapHash<T>::from(t: T) -> T
  1080. pub struct aya::maps::xdp::XskMap<T>
  1081. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  1082. pub fn aya::maps::XskMap<T>::len(&self) -> u32
  1083. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  1084. pub fn aya::maps::XskMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1085. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  1086. pub fn aya::maps::XskMap<T>::set(&mut self, index: u32, socket_fd: impl std::os::fd::raw::AsRawFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1087. pub fn aya::maps::XskMap<T>::unset(&mut self, index: u32) -> core::result::Result<(), aya::maps::MapError>
  1088. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  1089. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  1090. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1091. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  1092. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1093. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1094. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  1095. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1096. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1097. impl<T> core::marker::Freeze for aya::maps::XskMap<T> where T: core::marker::Freeze
  1098. impl<T> core::marker::Send for aya::maps::XskMap<T> where T: core::marker::Send
  1099. impl<T> core::marker::Sync for aya::maps::XskMap<T> where T: core::marker::Sync
  1100. impl<T> core::marker::Unpin for aya::maps::XskMap<T> where T: core::marker::Unpin
  1101. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1102. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1103. impl<T, U> core::convert::Into<U> for aya::maps::XskMap<T> where U: core::convert::From<T>
  1104. pub fn aya::maps::XskMap<T>::into(self) -> U
  1105. impl<T, U> core::convert::TryFrom<U> for aya::maps::XskMap<T> where U: core::convert::Into<T>
  1106. pub type aya::maps::XskMap<T>::Error = core::convert::Infallible
  1107. pub fn aya::maps::XskMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1108. impl<T, U> core::convert::TryInto<U> for aya::maps::XskMap<T> where U: core::convert::TryFrom<T>
  1109. pub type aya::maps::XskMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1110. pub fn aya::maps::XskMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1111. impl<T> core::any::Any for aya::maps::XskMap<T> where T: 'static + ?core::marker::Sized
  1112. pub fn aya::maps::XskMap<T>::type_id(&self) -> core::any::TypeId
  1113. impl<T> core::borrow::Borrow<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  1114. pub fn aya::maps::XskMap<T>::borrow(&self) -> &T
  1115. impl<T> core::borrow::BorrowMut<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  1116. pub fn aya::maps::XskMap<T>::borrow_mut(&mut self) -> &mut T
  1117. impl<T> core::convert::From<T> for aya::maps::XskMap<T>
  1118. pub fn aya::maps::XskMap<T>::from(t: T) -> T
  1119. pub enum aya::maps::Map
  1120. pub aya::maps::Map::Array(aya::maps::MapData)
  1121. pub aya::maps::Map::BloomFilter(aya::maps::MapData)
  1122. pub aya::maps::Map::CpuMap(aya::maps::MapData)
  1123. pub aya::maps::Map::DevMap(aya::maps::MapData)
  1124. pub aya::maps::Map::DevMapHash(aya::maps::MapData)
  1125. pub aya::maps::Map::HashMap(aya::maps::MapData)
  1126. pub aya::maps::Map::LpmTrie(aya::maps::MapData)
  1127. pub aya::maps::Map::LruHashMap(aya::maps::MapData)
  1128. pub aya::maps::Map::PerCpuArray(aya::maps::MapData)
  1129. pub aya::maps::Map::PerCpuHashMap(aya::maps::MapData)
  1130. pub aya::maps::Map::PerCpuLruHashMap(aya::maps::MapData)
  1131. pub aya::maps::Map::PerfEventArray(aya::maps::MapData)
  1132. pub aya::maps::Map::ProgramArray(aya::maps::MapData)
  1133. pub aya::maps::Map::Queue(aya::maps::MapData)
  1134. pub aya::maps::Map::RingBuf(aya::maps::MapData)
  1135. pub aya::maps::Map::SockHash(aya::maps::MapData)
  1136. pub aya::maps::Map::SockMap(aya::maps::MapData)
  1137. pub aya::maps::Map::Stack(aya::maps::MapData)
  1138. pub aya::maps::Map::StackTraceMap(aya::maps::MapData)
  1139. pub aya::maps::Map::Unsupported(aya::maps::MapData)
  1140. pub aya::maps::Map::XskMap(aya::maps::MapData)
  1141. impl aya::maps::Map
  1142. pub fn aya::maps::Map::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1143. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  1144. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  1145. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1146. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1147. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1148. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1149. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1150. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1151. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1152. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  1153. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  1154. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1155. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  1156. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  1157. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1158. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  1159. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  1160. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1161. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  1162. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1163. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1164. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  1165. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1166. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1167. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  1168. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  1169. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1170. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  1171. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  1172. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1173. impl core::fmt::Debug for aya::maps::Map
  1174. pub fn aya::maps::Map::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1175. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  1176. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1177. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1178. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  1179. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1180. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1181. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  1182. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1183. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1184. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  1185. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1186. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1187. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  1188. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1189. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1190. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  1191. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1192. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1193. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  1194. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1195. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1196. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  1197. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1198. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1199. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  1200. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1201. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1202. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  1203. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1204. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1205. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  1206. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1207. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1208. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  1209. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1210. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1211. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  1212. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1213. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1214. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  1215. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1216. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1217. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  1218. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1219. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1220. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  1221. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1222. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1223. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  1224. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1225. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1226. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  1227. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1228. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1229. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  1230. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1231. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1232. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1233. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1234. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1235. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1236. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1237. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1238. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  1239. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1240. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1241. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  1242. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1243. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1244. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  1245. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1246. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1247. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  1248. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1249. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1250. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  1251. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1252. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1253. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  1254. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1255. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1256. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  1257. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1258. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1259. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  1260. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1261. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1262. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1263. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1264. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1265. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1266. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1267. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1268. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  1269. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1270. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1271. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  1272. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1273. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1274. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  1275. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1276. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1277. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  1278. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1279. pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1280. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  1281. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1282. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1283. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  1284. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1285. pub fn aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1286. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  1287. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1288. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1289. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  1290. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1291. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1292. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  1293. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1294. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1295. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  1296. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1297. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1298. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  1299. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  1300. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1301. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  1302. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  1303. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1304. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  1305. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  1306. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1307. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  1308. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  1309. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1310. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  1311. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  1312. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1313. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  1314. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  1315. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1316. impl core::marker::Freeze for aya::maps::Map
  1317. impl core::marker::Send for aya::maps::Map
  1318. impl core::marker::Sync for aya::maps::Map
  1319. impl core::marker::Unpin for aya::maps::Map
  1320. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::Map
  1321. impl core::panic::unwind_safe::UnwindSafe for aya::maps::Map
  1322. impl<T, U> core::convert::Into<U> for aya::maps::Map where U: core::convert::From<T>
  1323. pub fn aya::maps::Map::into(self) -> U
  1324. impl<T, U> core::convert::TryFrom<U> for aya::maps::Map where U: core::convert::Into<T>
  1325. pub type aya::maps::Map::Error = core::convert::Infallible
  1326. pub fn aya::maps::Map::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1327. impl<T, U> core::convert::TryInto<U> for aya::maps::Map where U: core::convert::TryFrom<T>
  1328. pub type aya::maps::Map::Error = <U as core::convert::TryFrom<T>>::Error
  1329. pub fn aya::maps::Map::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1330. impl<T> core::any::Any for aya::maps::Map where T: 'static + ?core::marker::Sized
  1331. pub fn aya::maps::Map::type_id(&self) -> core::any::TypeId
  1332. impl<T> core::borrow::Borrow<T> for aya::maps::Map where T: ?core::marker::Sized
  1333. pub fn aya::maps::Map::borrow(&self) -> &T
  1334. impl<T> core::borrow::BorrowMut<T> for aya::maps::Map where T: ?core::marker::Sized
  1335. pub fn aya::maps::Map::borrow_mut(&mut self) -> &mut T
  1336. impl<T> core::convert::From<T> for aya::maps::Map
  1337. pub fn aya::maps::Map::from(t: T) -> T
  1338. pub enum aya::maps::MapError
  1339. pub aya::maps::MapError::CreateError
  1340. pub aya::maps::MapError::CreateError::io_error: std::io::error::Error
  1341. pub aya::maps::MapError::CreateError::name: alloc::string::String
  1342. pub aya::maps::MapError::ElementNotFound
  1343. pub aya::maps::MapError::InvalidKeySize
  1344. pub aya::maps::MapError::InvalidKeySize::expected: usize
  1345. pub aya::maps::MapError::InvalidKeySize::size: usize
  1346. pub aya::maps::MapError::InvalidMapType
  1347. pub aya::maps::MapError::InvalidMapType::map_type: u32
  1348. pub aya::maps::MapError::InvalidName
  1349. pub aya::maps::MapError::InvalidName::name: alloc::string::String
  1350. pub aya::maps::MapError::InvalidValueSize
  1351. pub aya::maps::MapError::InvalidValueSize::expected: usize
  1352. pub aya::maps::MapError::InvalidValueSize::size: usize
  1353. pub aya::maps::MapError::IoError(std::io::error::Error)
  1354. pub aya::maps::MapError::KeyNotFound
  1355. pub aya::maps::MapError::OutOfBounds
  1356. pub aya::maps::MapError::OutOfBounds::index: u32
  1357. pub aya::maps::MapError::OutOfBounds::max_entries: u32
  1358. pub aya::maps::MapError::PinError
  1359. pub aya::maps::MapError::PinError::error: aya::pin::PinError
  1360. pub aya::maps::MapError::PinError::name: core::option::Option<alloc::string::String>
  1361. pub aya::maps::MapError::ProgIdNotSupported
  1362. pub aya::maps::MapError::ProgramNotLoaded
  1363. pub aya::maps::MapError::SyscallError(aya::sys::SyscallError)
  1364. pub aya::maps::MapError::Unsupported
  1365. pub aya::maps::MapError::Unsupported::map_type: aya_obj::generated::linux_bindings_x86_64::bpf_map_type
  1366. pub aya::maps::MapError::Unsupported::name: alloc::string::String
  1367. impl core::convert::From<aya::maps::MapError> for aya::EbpfError
  1368. pub fn aya::EbpfError::from(source: aya::maps::MapError) -> Self
  1369. impl core::convert::From<aya::maps::MapError> for aya::maps::xdp::XdpMapError
  1370. pub fn aya::maps::xdp::XdpMapError::from(source: aya::maps::MapError) -> Self
  1371. impl core::convert::From<aya::maps::MapError> for aya::programs::ProgramError
  1372. pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self
  1373. impl core::convert::From<aya::sys::SyscallError> for aya::maps::MapError
  1374. pub fn aya::maps::MapError::from(source: aya::sys::SyscallError) -> Self
  1375. impl core::convert::From<aya_obj::obj::InvalidTypeBinding<u32>> for aya::maps::MapError
  1376. pub fn aya::maps::MapError::from(e: aya_obj::obj::InvalidTypeBinding<u32>) -> Self
  1377. impl core::convert::From<std::io::error::Error> for aya::maps::MapError
  1378. pub fn aya::maps::MapError::from(source: std::io::error::Error) -> Self
  1379. impl core::error::Error for aya::maps::MapError
  1380. pub fn aya::maps::MapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  1381. impl core::fmt::Debug for aya::maps::MapError
  1382. pub fn aya::maps::MapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1383. impl core::fmt::Display for aya::maps::MapError
  1384. pub fn aya::maps::MapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1385. impl core::marker::Freeze for aya::maps::MapError
  1386. impl core::marker::Send for aya::maps::MapError
  1387. impl core::marker::Sync for aya::maps::MapError
  1388. impl core::marker::Unpin for aya::maps::MapError
  1389. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapError
  1390. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::MapError
  1391. impl<T, U> core::convert::Into<U> for aya::maps::MapError where U: core::convert::From<T>
  1392. pub fn aya::maps::MapError::into(self) -> U
  1393. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapError where U: core::convert::Into<T>
  1394. pub type aya::maps::MapError::Error = core::convert::Infallible
  1395. pub fn aya::maps::MapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1396. impl<T, U> core::convert::TryInto<U> for aya::maps::MapError where U: core::convert::TryFrom<T>
  1397. pub type aya::maps::MapError::Error = <U as core::convert::TryFrom<T>>::Error
  1398. pub fn aya::maps::MapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1399. impl<T> alloc::string::ToString for aya::maps::MapError where T: core::fmt::Display + ?core::marker::Sized
  1400. pub fn aya::maps::MapError::to_string(&self) -> alloc::string::String
  1401. impl<T> core::any::Any for aya::maps::MapError where T: 'static + ?core::marker::Sized
  1402. pub fn aya::maps::MapError::type_id(&self) -> core::any::TypeId
  1403. impl<T> core::borrow::Borrow<T> for aya::maps::MapError where T: ?core::marker::Sized
  1404. pub fn aya::maps::MapError::borrow(&self) -> &T
  1405. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapError where T: ?core::marker::Sized
  1406. pub fn aya::maps::MapError::borrow_mut(&mut self) -> &mut T
  1407. impl<T> core::convert::From<T> for aya::maps::MapError
  1408. pub fn aya::maps::MapError::from(t: T) -> T
  1409. #[non_exhaustive] pub enum aya::maps::MapType
  1410. pub aya::maps::MapType::Arena = 33
  1411. pub aya::maps::MapType::Array = 2
  1412. pub aya::maps::MapType::ArrayOfMaps = 12
  1413. pub aya::maps::MapType::BloomFilter = 30
  1414. pub aya::maps::MapType::CgroupArray = 8
  1415. pub aya::maps::MapType::CgroupStorage = 19
  1416. pub aya::maps::MapType::CgrpStorage = 32
  1417. pub aya::maps::MapType::CpuMap = 16
  1418. pub aya::maps::MapType::DevMap = 14
  1419. pub aya::maps::MapType::DevMapHash = 25
  1420. pub aya::maps::MapType::Hash = 1
  1421. pub aya::maps::MapType::HashOfMaps = 13
  1422. pub aya::maps::MapType::InodeStorage = 28
  1423. pub aya::maps::MapType::LpmTrie = 11
  1424. pub aya::maps::MapType::LruHash = 9
  1425. pub aya::maps::MapType::LruPerCpuHash = 10
  1426. pub aya::maps::MapType::PerCpuArray = 6
  1427. pub aya::maps::MapType::PerCpuCgroupStorage = 21
  1428. pub aya::maps::MapType::PerCpuHash = 5
  1429. pub aya::maps::MapType::PerfEventArray = 4
  1430. pub aya::maps::MapType::ProgramArray = 3
  1431. pub aya::maps::MapType::Queue = 22
  1432. pub aya::maps::MapType::ReuseportSockArray = 20
  1433. pub aya::maps::MapType::RingBuf = 27
  1434. pub aya::maps::MapType::SkStorage = 24
  1435. pub aya::maps::MapType::SockHash = 18
  1436. pub aya::maps::MapType::SockMap = 15
  1437. pub aya::maps::MapType::Stack = 23
  1438. pub aya::maps::MapType::StackTrace = 7
  1439. pub aya::maps::MapType::StructOps = 26
  1440. pub aya::maps::MapType::TaskStorage = 29
  1441. pub aya::maps::MapType::Unspecified = 0
  1442. pub aya::maps::MapType::UserRingBuf = 31
  1443. pub aya::maps::MapType::XskMap = 17
  1444. impl core::clone::Clone for aya::maps::MapType
  1445. pub fn aya::maps::MapType::clone(&self) -> aya::maps::MapType
  1446. impl core::cmp::PartialEq for aya::maps::MapType
  1447. pub fn aya::maps::MapType::eq(&self, other: &aya::maps::MapType) -> bool
  1448. impl core::convert::TryFrom<aya_obj::generated::linux_bindings_x86_64::bpf_map_type> for aya::maps::MapType
  1449. pub type aya::maps::MapType::Error = aya::maps::MapError
  1450. pub fn aya::maps::MapType::try_from(map_type: aya_obj::generated::linux_bindings_x86_64::bpf_map_type) -> core::result::Result<Self, Self::Error>
  1451. impl core::fmt::Debug for aya::maps::MapType
  1452. pub fn aya::maps::MapType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1453. impl core::marker::Copy for aya::maps::MapType
  1454. impl core::marker::StructuralPartialEq for aya::maps::MapType
  1455. impl core::marker::Freeze for aya::maps::MapType
  1456. impl core::marker::Send for aya::maps::MapType
  1457. impl core::marker::Sync for aya::maps::MapType
  1458. impl core::marker::Unpin for aya::maps::MapType
  1459. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapType
  1460. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapType
  1461. impl<T, U> core::convert::Into<U> for aya::maps::MapType where U: core::convert::From<T>
  1462. pub fn aya::maps::MapType::into(self) -> U
  1463. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapType where U: core::convert::Into<T>
  1464. pub type aya::maps::MapType::Error = core::convert::Infallible
  1465. pub fn aya::maps::MapType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1466. impl<T, U> core::convert::TryInto<U> for aya::maps::MapType where U: core::convert::TryFrom<T>
  1467. pub type aya::maps::MapType::Error = <U as core::convert::TryFrom<T>>::Error
  1468. pub fn aya::maps::MapType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1469. impl<T> alloc::borrow::ToOwned for aya::maps::MapType where T: core::clone::Clone
  1470. pub type aya::maps::MapType::Owned = T
  1471. pub fn aya::maps::MapType::clone_into(&self, target: &mut T)
  1472. pub fn aya::maps::MapType::to_owned(&self) -> T
  1473. impl<T> core::any::Any for aya::maps::MapType where T: 'static + ?core::marker::Sized
  1474. pub fn aya::maps::MapType::type_id(&self) -> core::any::TypeId
  1475. impl<T> core::borrow::Borrow<T> for aya::maps::MapType where T: ?core::marker::Sized
  1476. pub fn aya::maps::MapType::borrow(&self) -> &T
  1477. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapType where T: ?core::marker::Sized
  1478. pub fn aya::maps::MapType::borrow_mut(&mut self) -> &mut T
  1479. impl<T> core::clone::CloneToUninit for aya::maps::MapType where T: core::clone::Clone
  1480. pub unsafe fn aya::maps::MapType::clone_to_uninit(&self, dest: *mut u8)
  1481. impl<T> core::convert::From<T> for aya::maps::MapType
  1482. pub fn aya::maps::MapType::from(t: T) -> T
  1483. pub struct aya::maps::Array<T, V: aya::Pod>
  1484. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1485. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1486. pub fn aya::maps::array::Array<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<V, aya::maps::MapError>> + '_
  1487. pub fn aya::maps::array::Array<T, V>::len(&self) -> u32
  1488. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1489. pub fn aya::maps::array::Array<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1490. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1491. pub fn aya::maps::array::Array<T, V>::set(&mut self, index: u32, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1492. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  1493. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1494. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1495. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  1496. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1497. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1498. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  1499. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  1500. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  1501. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  1502. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  1503. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1504. impl<T, V> core::marker::Freeze for aya::maps::array::Array<T, V> where T: core::marker::Freeze
  1505. impl<T, V> core::marker::Send for aya::maps::array::Array<T, V> where T: core::marker::Send, V: core::marker::Send
  1506. impl<T, V> core::marker::Sync for aya::maps::array::Array<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1507. impl<T, V> core::marker::Unpin for aya::maps::array::Array<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1508. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1509. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1510. impl<T, U> core::convert::Into<U> for aya::maps::array::Array<T, V> where U: core::convert::From<T>
  1511. pub fn aya::maps::array::Array<T, V>::into(self) -> U
  1512. impl<T, U> core::convert::TryFrom<U> for aya::maps::array::Array<T, V> where U: core::convert::Into<T>
  1513. pub type aya::maps::array::Array<T, V>::Error = core::convert::Infallible
  1514. pub fn aya::maps::array::Array<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1515. impl<T, U> core::convert::TryInto<U> for aya::maps::array::Array<T, V> where U: core::convert::TryFrom<T>
  1516. pub type aya::maps::array::Array<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1517. pub fn aya::maps::array::Array<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1518. impl<T> core::any::Any for aya::maps::array::Array<T, V> where T: 'static + ?core::marker::Sized
  1519. pub fn aya::maps::array::Array<T, V>::type_id(&self) -> core::any::TypeId
  1520. impl<T> core::borrow::Borrow<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  1521. pub fn aya::maps::array::Array<T, V>::borrow(&self) -> &T
  1522. impl<T> core::borrow::BorrowMut<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  1523. pub fn aya::maps::array::Array<T, V>::borrow_mut(&mut self) -> &mut T
  1524. impl<T> core::convert::From<T> for aya::maps::array::Array<T, V>
  1525. pub fn aya::maps::array::Array<T, V>::from(t: T) -> T
  1526. pub struct aya::maps::AsyncPerfEventArray<T>
  1527. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArray<T>
  1528. pub fn aya::maps::perf::AsyncPerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::AsyncPerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  1529. pub fn aya::maps::perf::AsyncPerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1530. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  1531. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1532. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1533. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  1534. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1535. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1536. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  1537. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1538. pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1539. impl<T> core::marker::Freeze for aya::maps::perf::AsyncPerfEventArray<T>
  1540. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  1541. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  1542. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArray<T>
  1543. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1544. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1545. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::From<T>
  1546. pub fn aya::maps::perf::AsyncPerfEventArray<T>::into(self) -> U
  1547. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::Into<T>
  1548. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = core::convert::Infallible
  1549. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1550. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::TryFrom<T>
  1551. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1552. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1553. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArray<T> where T: 'static + ?core::marker::Sized
  1554. pub fn aya::maps::perf::AsyncPerfEventArray<T>::type_id(&self) -> core::any::TypeId
  1555. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: ?core::marker::Sized
  1556. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow(&self) -> &T
  1557. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: ?core::marker::Sized
  1558. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  1559. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArray<T>
  1560. pub fn aya::maps::perf::AsyncPerfEventArray<T>::from(t: T) -> T
  1561. pub struct aya::maps::BloomFilter<T, V: aya::Pod>
  1562. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1563. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1564. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1565. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1566. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1567. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::insert(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1568. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  1569. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1570. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1571. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  1572. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1573. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1574. impl<T: core::fmt::Debug, V: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::bloom_filter::BloomFilter<T, V>
  1575. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1576. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  1577. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  1578. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1579. impl<T, V> core::marker::Freeze for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Freeze
  1580. impl<T, V> core::marker::Send for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Send, V: core::marker::Send
  1581. impl<T, V> core::marker::Sync for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1582. impl<T, V> core::marker::Unpin for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1583. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1584. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1585. impl<T, U> core::convert::Into<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::From<T>
  1586. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::into(self) -> U
  1587. impl<T, U> core::convert::TryFrom<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::Into<T>
  1588. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = core::convert::Infallible
  1589. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::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::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::TryFrom<T>
  1591. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1592. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1593. impl<T> core::any::Any for aya::maps::bloom_filter::BloomFilter<T, V> where T: 'static + ?core::marker::Sized
  1594. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::type_id(&self) -> core::any::TypeId
  1595. impl<T> core::borrow::Borrow<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  1596. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow(&self) -> &T
  1597. impl<T> core::borrow::BorrowMut<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  1598. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow_mut(&mut self) -> &mut T
  1599. impl<T> core::convert::From<T> for aya::maps::bloom_filter::BloomFilter<T, V>
  1600. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::from(t: T) -> T
  1601. pub struct aya::maps::CpuMap<T>
  1602. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  1603. pub fn aya::maps::CpuMap<T>::get(&self, cpu_index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>
  1604. pub fn aya::maps::CpuMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>> + '_
  1605. pub fn aya::maps::CpuMap<T>::len(&self) -> u32
  1606. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  1607. pub fn aya::maps::CpuMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1608. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  1609. pub fn aya::maps::CpuMap<T>::set(&mut self, cpu_index: u32, queue_size: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1610. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  1611. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  1612. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1613. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  1614. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1615. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1616. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  1617. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1618. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1619. impl<T> core::marker::Freeze for aya::maps::CpuMap<T> where T: core::marker::Freeze
  1620. impl<T> core::marker::Send for aya::maps::CpuMap<T> where T: core::marker::Send
  1621. impl<T> core::marker::Sync for aya::maps::CpuMap<T> where T: core::marker::Sync
  1622. impl<T> core::marker::Unpin for aya::maps::CpuMap<T> where T: core::marker::Unpin
  1623. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1624. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1625. impl<T, U> core::convert::Into<U> for aya::maps::CpuMap<T> where U: core::convert::From<T>
  1626. pub fn aya::maps::CpuMap<T>::into(self) -> U
  1627. impl<T, U> core::convert::TryFrom<U> for aya::maps::CpuMap<T> where U: core::convert::Into<T>
  1628. pub type aya::maps::CpuMap<T>::Error = core::convert::Infallible
  1629. pub fn aya::maps::CpuMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1630. impl<T, U> core::convert::TryInto<U> for aya::maps::CpuMap<T> where U: core::convert::TryFrom<T>
  1631. pub type aya::maps::CpuMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1632. pub fn aya::maps::CpuMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1633. impl<T> core::any::Any for aya::maps::CpuMap<T> where T: 'static + ?core::marker::Sized
  1634. pub fn aya::maps::CpuMap<T>::type_id(&self) -> core::any::TypeId
  1635. impl<T> core::borrow::Borrow<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  1636. pub fn aya::maps::CpuMap<T>::borrow(&self) -> &T
  1637. impl<T> core::borrow::BorrowMut<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  1638. pub fn aya::maps::CpuMap<T>::borrow_mut(&mut self) -> &mut T
  1639. impl<T> core::convert::From<T> for aya::maps::CpuMap<T>
  1640. pub fn aya::maps::CpuMap<T>::from(t: T) -> T
  1641. pub struct aya::maps::DevMap<T>
  1642. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1643. pub fn aya::maps::DevMap<T>::get(&self, index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1644. pub fn aya::maps::DevMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>> + '_
  1645. pub fn aya::maps::DevMap<T>::len(&self) -> u32
  1646. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1647. pub fn aya::maps::DevMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1648. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  1649. pub fn aya::maps::DevMap<T>::set(&mut self, index: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1650. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1651. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1652. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1653. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1654. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1655. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1656. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1657. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1658. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1659. impl<T> core::marker::Freeze for aya::maps::DevMap<T> where T: core::marker::Freeze
  1660. impl<T> core::marker::Send for aya::maps::DevMap<T> where T: core::marker::Send
  1661. impl<T> core::marker::Sync for aya::maps::DevMap<T> where T: core::marker::Sync
  1662. impl<T> core::marker::Unpin for aya::maps::DevMap<T> where T: core::marker::Unpin
  1663. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1664. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1665. impl<T, U> core::convert::Into<U> for aya::maps::DevMap<T> where U: core::convert::From<T>
  1666. pub fn aya::maps::DevMap<T>::into(self) -> U
  1667. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMap<T> where U: core::convert::Into<T>
  1668. pub type aya::maps::DevMap<T>::Error = core::convert::Infallible
  1669. pub fn aya::maps::DevMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1670. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMap<T> where U: core::convert::TryFrom<T>
  1671. pub type aya::maps::DevMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1672. pub fn aya::maps::DevMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1673. impl<T> core::any::Any for aya::maps::DevMap<T> where T: 'static + ?core::marker::Sized
  1674. pub fn aya::maps::DevMap<T>::type_id(&self) -> core::any::TypeId
  1675. impl<T> core::borrow::Borrow<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1676. pub fn aya::maps::DevMap<T>::borrow(&self) -> &T
  1677. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1678. pub fn aya::maps::DevMap<T>::borrow_mut(&mut self) -> &mut T
  1679. impl<T> core::convert::From<T> for aya::maps::DevMap<T>
  1680. pub fn aya::maps::DevMap<T>::from(t: T) -> T
  1681. pub struct aya::maps::DevMapHash<T>
  1682. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1683. pub fn aya::maps::DevMapHash<T>::get(&self, key: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1684. pub fn aya::maps::DevMapHash<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::xdp::dev_map::DevMapValue, Self>
  1685. pub fn aya::maps::DevMapHash<T>::keys(&self) -> aya::maps::MapKeys<'_, u32>
  1686. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1687. pub fn aya::maps::DevMapHash<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1688. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1689. pub fn aya::maps::DevMapHash<T>::insert(&mut self, key: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1690. pub fn aya::maps::DevMapHash<T>::remove(&mut self, key: u32) -> core::result::Result<(), aya::maps::MapError>
  1691. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1692. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1693. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1694. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1695. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1696. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1697. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1698. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1699. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1700. impl<T> core::marker::Freeze for aya::maps::DevMapHash<T> where T: core::marker::Freeze
  1701. impl<T> core::marker::Send for aya::maps::DevMapHash<T> where T: core::marker::Send
  1702. impl<T> core::marker::Sync for aya::maps::DevMapHash<T> where T: core::marker::Sync
  1703. impl<T> core::marker::Unpin for aya::maps::DevMapHash<T> where T: core::marker::Unpin
  1704. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1705. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::UnwindSafe
  1706. impl<T, U> core::convert::Into<U> for aya::maps::DevMapHash<T> where U: core::convert::From<T>
  1707. pub fn aya::maps::DevMapHash<T>::into(self) -> U
  1708. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMapHash<T> where U: core::convert::Into<T>
  1709. pub type aya::maps::DevMapHash<T>::Error = core::convert::Infallible
  1710. pub fn aya::maps::DevMapHash<T>::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::maps::DevMapHash<T> where U: core::convert::TryFrom<T>
  1712. pub type aya::maps::DevMapHash<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1713. pub fn aya::maps::DevMapHash<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1714. impl<T> core::any::Any for aya::maps::DevMapHash<T> where T: 'static + ?core::marker::Sized
  1715. pub fn aya::maps::DevMapHash<T>::type_id(&self) -> core::any::TypeId
  1716. impl<T> core::borrow::Borrow<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1717. pub fn aya::maps::DevMapHash<T>::borrow(&self) -> &T
  1718. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1719. pub fn aya::maps::DevMapHash<T>::borrow_mut(&mut self) -> &mut T
  1720. impl<T> core::convert::From<T> for aya::maps::DevMapHash<T>
  1721. pub fn aya::maps::DevMapHash<T>::from(t: T) -> T
  1722. pub struct aya::maps::HashMap<T, K, V>
  1723. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1724. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1725. pub fn aya::maps::hash_map::HashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, V, Self>
  1726. pub fn aya::maps::hash_map::HashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  1727. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1728. pub fn aya::maps::hash_map::HashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1729. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1730. pub fn aya::maps::hash_map::HashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1731. pub fn aya::maps::hash_map::HashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  1732. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  1733. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1734. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1735. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  1736. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1737. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1738. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  1739. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1740. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1741. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  1742. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  1743. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  1744. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::hash_map::HashMap<T, K, V>
  1745. pub fn aya::maps::hash_map::HashMap<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1746. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Freeze
  1747. impl<T, K, V> core::marker::Send for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  1748. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  1749. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  1750. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1751. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1752. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::From<T>
  1753. pub fn aya::maps::hash_map::HashMap<T, K, V>::into(self) -> U
  1754. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::Into<T>
  1755. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = core::convert::Infallible
  1756. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1757. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::TryFrom<T>
  1758. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1759. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1760. impl<T> core::any::Any for aya::maps::hash_map::HashMap<T, K, V> where T: 'static + ?core::marker::Sized
  1761. pub fn aya::maps::hash_map::HashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  1762. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  1763. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow(&self) -> &T
  1764. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  1765. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  1766. impl<T> core::convert::From<T> for aya::maps::hash_map::HashMap<T, K, V>
  1767. pub fn aya::maps::hash_map::HashMap<T, K, V>::from(t: T) -> T
  1768. pub struct aya::maps::LpmTrie<T, K, V>
  1769. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1770. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1771. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key<K>, V, Self>
  1772. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key<K>>
  1773. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1774. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1775. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1776. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::insert(&mut self, key: &aya::maps::lpm_trie::Key<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1777. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::remove(&mut self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<(), aya::maps::MapError>
  1778. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  1779. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1780. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1781. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  1782. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1783. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1784. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  1785. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1786. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1787. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1788. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  1789. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  1790. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1791. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1792. impl<T, K, V> core::marker::Freeze for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Freeze
  1793. impl<T, K, V> core::marker::Send for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  1794. impl<T, K, V> core::marker::Sync for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  1795. impl<T, K, V> core::marker::Unpin for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  1796. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1797. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1798. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::From<T>
  1799. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::into(self) -> U
  1800. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::Into<T>
  1801. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = core::convert::Infallible
  1802. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::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::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::TryFrom<T>
  1804. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1805. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1806. impl<T> core::any::Any for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: 'static + ?core::marker::Sized
  1807. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::type_id(&self) -> core::any::TypeId
  1808. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  1809. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow(&self) -> &T
  1810. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  1811. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow_mut(&mut self) -> &mut T
  1812. impl<T> core::convert::From<T> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1813. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::from(t: T) -> T
  1814. pub struct aya::maps::MapData
  1815. impl aya::maps::MapData
  1816. pub fn aya::maps::MapData::create(obj: aya_obj::maps::Map, name: &str, btf_fd: core::option::Option<std::os::fd::owned::BorrowedFd<'_>>) -> core::result::Result<Self, aya::maps::MapError>
  1817. pub fn aya::maps::MapData::fd(&self) -> &aya::maps::MapFd
  1818. pub fn aya::maps::MapData::from_fd(fd: std::os::fd::owned::OwnedFd) -> core::result::Result<Self, aya::maps::MapError>
  1819. pub fn aya::maps::MapData::from_id(id: u32) -> core::result::Result<Self, aya::maps::MapError>
  1820. pub fn aya::maps::MapData::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::maps::MapError>
  1821. pub fn aya::maps::MapData::info(&self) -> core::result::Result<aya::maps::MapInfo, aya::maps::MapError>
  1822. pub fn aya::maps::MapData::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1823. impl core::fmt::Debug for aya::maps::MapData
  1824. pub fn aya::maps::MapData::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1825. impl core::marker::Freeze for aya::maps::MapData
  1826. impl core::marker::Send for aya::maps::MapData
  1827. impl core::marker::Sync for aya::maps::MapData
  1828. impl core::marker::Unpin for aya::maps::MapData
  1829. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapData
  1830. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapData
  1831. impl<T, U> core::convert::Into<U> for aya::maps::MapData where U: core::convert::From<T>
  1832. pub fn aya::maps::MapData::into(self) -> U
  1833. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapData where U: core::convert::Into<T>
  1834. pub type aya::maps::MapData::Error = core::convert::Infallible
  1835. pub fn aya::maps::MapData::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1836. impl<T, U> core::convert::TryInto<U> for aya::maps::MapData where U: core::convert::TryFrom<T>
  1837. pub type aya::maps::MapData::Error = <U as core::convert::TryFrom<T>>::Error
  1838. pub fn aya::maps::MapData::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1839. impl<T> core::any::Any for aya::maps::MapData where T: 'static + ?core::marker::Sized
  1840. pub fn aya::maps::MapData::type_id(&self) -> core::any::TypeId
  1841. impl<T> core::borrow::Borrow<T> for aya::maps::MapData where T: ?core::marker::Sized
  1842. pub fn aya::maps::MapData::borrow(&self) -> &T
  1843. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapData where T: ?core::marker::Sized
  1844. pub fn aya::maps::MapData::borrow_mut(&mut self) -> &mut T
  1845. impl<T> core::convert::From<T> for aya::maps::MapData
  1846. pub fn aya::maps::MapData::from(t: T) -> T
  1847. pub struct aya::maps::MapFd
  1848. impl core::fmt::Debug for aya::maps::MapFd
  1849. pub fn aya::maps::MapFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1850. impl std::os::fd::owned::AsFd for aya::maps::MapFd
  1851. pub fn aya::maps::MapFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  1852. impl core::marker::Freeze for aya::maps::MapFd
  1853. impl core::marker::Send for aya::maps::MapFd
  1854. impl core::marker::Sync for aya::maps::MapFd
  1855. impl core::marker::Unpin for aya::maps::MapFd
  1856. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapFd
  1857. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapFd
  1858. impl<T, U> core::convert::Into<U> for aya::maps::MapFd where U: core::convert::From<T>
  1859. pub fn aya::maps::MapFd::into(self) -> U
  1860. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapFd where U: core::convert::Into<T>
  1861. pub type aya::maps::MapFd::Error = core::convert::Infallible
  1862. pub fn aya::maps::MapFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1863. impl<T, U> core::convert::TryInto<U> for aya::maps::MapFd where U: core::convert::TryFrom<T>
  1864. pub type aya::maps::MapFd::Error = <U as core::convert::TryFrom<T>>::Error
  1865. pub fn aya::maps::MapFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1866. impl<T> core::any::Any for aya::maps::MapFd where T: 'static + ?core::marker::Sized
  1867. pub fn aya::maps::MapFd::type_id(&self) -> core::any::TypeId
  1868. impl<T> core::borrow::Borrow<T> for aya::maps::MapFd where T: ?core::marker::Sized
  1869. pub fn aya::maps::MapFd::borrow(&self) -> &T
  1870. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapFd where T: ?core::marker::Sized
  1871. pub fn aya::maps::MapFd::borrow_mut(&mut self) -> &mut T
  1872. impl<T> core::convert::From<T> for aya::maps::MapFd
  1873. pub fn aya::maps::MapFd::from(t: T) -> T
  1874. pub struct aya::maps::MapInfo(_)
  1875. impl aya::maps::MapInfo
  1876. pub fn aya::maps::MapInfo::fd(&self) -> core::result::Result<aya::maps::MapFd, aya::maps::MapError>
  1877. pub fn aya::maps::MapInfo::from_id(id: u32) -> core::result::Result<Self, aya::maps::MapError>
  1878. pub fn aya::maps::MapInfo::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::maps::MapError>
  1879. pub fn aya::maps::MapInfo::id(&self) -> u32
  1880. pub fn aya::maps::MapInfo::key_size(&self) -> u32
  1881. pub fn aya::maps::MapInfo::map_flags(&self) -> u32
  1882. pub fn aya::maps::MapInfo::map_type(&self) -> core::result::Result<aya::maps::MapType, aya::maps::MapError>
  1883. pub fn aya::maps::MapInfo::max_entries(&self) -> u32
  1884. pub fn aya::maps::MapInfo::name(&self) -> &[u8]
  1885. pub fn aya::maps::MapInfo::name_as_str(&self) -> core::option::Option<&str>
  1886. pub fn aya::maps::MapInfo::value_size(&self) -> u32
  1887. impl core::fmt::Debug for aya::maps::MapInfo
  1888. pub fn aya::maps::MapInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1889. impl core::marker::Freeze for aya::maps::MapInfo
  1890. impl core::marker::Send for aya::maps::MapInfo
  1891. impl core::marker::Sync for aya::maps::MapInfo
  1892. impl core::marker::Unpin for aya::maps::MapInfo
  1893. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapInfo
  1894. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapInfo
  1895. impl<T, U> core::convert::Into<U> for aya::maps::MapInfo where U: core::convert::From<T>
  1896. pub fn aya::maps::MapInfo::into(self) -> U
  1897. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapInfo where U: core::convert::Into<T>
  1898. pub type aya::maps::MapInfo::Error = core::convert::Infallible
  1899. pub fn aya::maps::MapInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1900. impl<T, U> core::convert::TryInto<U> for aya::maps::MapInfo where U: core::convert::TryFrom<T>
  1901. pub type aya::maps::MapInfo::Error = <U as core::convert::TryFrom<T>>::Error
  1902. pub fn aya::maps::MapInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1903. impl<T> core::any::Any for aya::maps::MapInfo where T: 'static + ?core::marker::Sized
  1904. pub fn aya::maps::MapInfo::type_id(&self) -> core::any::TypeId
  1905. impl<T> core::borrow::Borrow<T> for aya::maps::MapInfo where T: ?core::marker::Sized
  1906. pub fn aya::maps::MapInfo::borrow(&self) -> &T
  1907. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapInfo where T: ?core::marker::Sized
  1908. pub fn aya::maps::MapInfo::borrow_mut(&mut self) -> &mut T
  1909. impl<T> core::convert::From<T> for aya::maps::MapInfo
  1910. pub fn aya::maps::MapInfo::from(t: T) -> T
  1911. pub struct aya::maps::MapIter<'coll, K: aya::Pod, V, I: aya::maps::IterableMap<K, V>>
  1912. impl<K: aya::Pod, V, I: aya::maps::IterableMap<K, V>> core::iter::traits::iterator::Iterator for aya::maps::MapIter<'_, K, V, I>
  1913. pub type aya::maps::MapIter<'_, K, V, I>::Item = core::result::Result<(K, V), aya::maps::MapError>
  1914. pub fn aya::maps::MapIter<'_, K, V, I>::next(&mut self) -> core::option::Option<Self::Item>
  1915. impl<'coll, K, V, I> core::marker::Freeze for aya::maps::MapIter<'coll, K, V, I> where K: core::marker::Freeze
  1916. impl<'coll, K, V, I> core::marker::Send for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, V: core::marker::Send, K: core::marker::Send
  1917. impl<'coll, K, V, I> core::marker::Sync for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, V: core::marker::Sync, K: core::marker::Sync
  1918. impl<'coll, K, V, I> core::marker::Unpin for aya::maps::MapIter<'coll, K, V, I> where V: core::marker::Unpin, K: core::marker::Unpin
  1919. impl<'coll, K, V, I> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapIter<'coll, K, V, I> where I: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe
  1920. impl<'coll, K, V, I> core::panic::unwind_safe::UnwindSafe for aya::maps::MapIter<'coll, K, V, I> where I: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe
  1921. impl<I> core::iter::traits::collect::IntoIterator for aya::maps::MapIter<'coll, K, V, I> where I: core::iter::traits::iterator::Iterator
  1922. pub type aya::maps::MapIter<'coll, K, V, I>::IntoIter = I
  1923. pub type aya::maps::MapIter<'coll, K, V, I>::Item = <I as core::iter::traits::iterator::Iterator>::Item
  1924. pub fn aya::maps::MapIter<'coll, K, V, I>::into_iter(self) -> I
  1925. impl<T, U> core::convert::Into<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::From<T>
  1926. pub fn aya::maps::MapIter<'coll, K, V, I>::into(self) -> U
  1927. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::Into<T>
  1928. pub type aya::maps::MapIter<'coll, K, V, I>::Error = core::convert::Infallible
  1929. pub fn aya::maps::MapIter<'coll, K, V, I>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1930. impl<T, U> core::convert::TryInto<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::TryFrom<T>
  1931. pub type aya::maps::MapIter<'coll, K, V, I>::Error = <U as core::convert::TryFrom<T>>::Error
  1932. pub fn aya::maps::MapIter<'coll, K, V, I>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1933. impl<T> core::any::Any for aya::maps::MapIter<'coll, K, V, I> where T: 'static + ?core::marker::Sized
  1934. pub fn aya::maps::MapIter<'coll, K, V, I>::type_id(&self) -> core::any::TypeId
  1935. impl<T> core::borrow::Borrow<T> for aya::maps::MapIter<'coll, K, V, I> where T: ?core::marker::Sized
  1936. pub fn aya::maps::MapIter<'coll, K, V, I>::borrow(&self) -> &T
  1937. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapIter<'coll, K, V, I> where T: ?core::marker::Sized
  1938. pub fn aya::maps::MapIter<'coll, K, V, I>::borrow_mut(&mut self) -> &mut T
  1939. impl<T> core::convert::From<T> for aya::maps::MapIter<'coll, K, V, I>
  1940. pub fn aya::maps::MapIter<'coll, K, V, I>::from(t: T) -> T
  1941. pub struct aya::maps::MapKeys<'coll, K: aya::Pod>
  1942. impl<K: aya::Pod> core::iter::traits::iterator::Iterator for aya::maps::MapKeys<'_, K>
  1943. pub type aya::maps::MapKeys<'_, K>::Item = core::result::Result<K, aya::maps::MapError>
  1944. pub fn aya::maps::MapKeys<'_, K>::next(&mut self) -> core::option::Option<core::result::Result<K, aya::maps::MapError>>
  1945. impl<'coll, K> core::marker::Freeze for aya::maps::MapKeys<'coll, K> where K: core::marker::Freeze
  1946. impl<'coll, K> core::marker::Send for aya::maps::MapKeys<'coll, K> where K: core::marker::Send
  1947. impl<'coll, K> core::marker::Sync for aya::maps::MapKeys<'coll, K> where K: core::marker::Sync
  1948. impl<'coll, K> core::marker::Unpin for aya::maps::MapKeys<'coll, K> where K: core::marker::Unpin
  1949. impl<'coll, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::RefUnwindSafe
  1950. impl<'coll, K> core::panic::unwind_safe::UnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::UnwindSafe
  1951. impl<I> core::iter::traits::collect::IntoIterator for aya::maps::MapKeys<'coll, K> where I: core::iter::traits::iterator::Iterator
  1952. pub type aya::maps::MapKeys<'coll, K>::IntoIter = I
  1953. pub type aya::maps::MapKeys<'coll, K>::Item = <I as core::iter::traits::iterator::Iterator>::Item
  1954. pub fn aya::maps::MapKeys<'coll, K>::into_iter(self) -> I
  1955. impl<T, U> core::convert::Into<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::From<T>
  1956. pub fn aya::maps::MapKeys<'coll, K>::into(self) -> U
  1957. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::Into<T>
  1958. pub type aya::maps::MapKeys<'coll, K>::Error = core::convert::Infallible
  1959. pub fn aya::maps::MapKeys<'coll, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1960. impl<T, U> core::convert::TryInto<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::TryFrom<T>
  1961. pub type aya::maps::MapKeys<'coll, K>::Error = <U as core::convert::TryFrom<T>>::Error
  1962. pub fn aya::maps::MapKeys<'coll, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1963. impl<T> core::any::Any for aya::maps::MapKeys<'coll, K> where T: 'static + ?core::marker::Sized
  1964. pub fn aya::maps::MapKeys<'coll, K>::type_id(&self) -> core::any::TypeId
  1965. impl<T> core::borrow::Borrow<T> for aya::maps::MapKeys<'coll, K> where T: ?core::marker::Sized
  1966. pub fn aya::maps::MapKeys<'coll, K>::borrow(&self) -> &T
  1967. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapKeys<'coll, K> where T: ?core::marker::Sized
  1968. pub fn aya::maps::MapKeys<'coll, K>::borrow_mut(&mut self) -> &mut T
  1969. impl<T> core::convert::From<T> for aya::maps::MapKeys<'coll, K>
  1970. pub fn aya::maps::MapKeys<'coll, K>::from(t: T) -> T
  1971. pub struct aya::maps::PerCpuArray<T, V: aya::Pod>
  1972. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1973. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1974. pub fn aya::maps::PerCpuArray<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>> + '_
  1975. pub fn aya::maps::PerCpuArray<T, V>::len(&self) -> u32
  1976. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1977. pub fn aya::maps::PerCpuArray<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1978. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1979. pub fn aya::maps::PerCpuArray<T, V>::set(&mut self, index: u32, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1980. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  1981. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1982. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1983. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  1984. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1985. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1986. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  1987. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1988. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  1989. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  1990. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  1991. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1992. impl<T, V> core::marker::Freeze for aya::maps::PerCpuArray<T, V> where T: core::marker::Freeze
  1993. impl<T, V> core::marker::Send for aya::maps::PerCpuArray<T, V> where T: core::marker::Send, V: core::marker::Send
  1994. impl<T, V> core::marker::Sync for aya::maps::PerCpuArray<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1995. impl<T, V> core::marker::Unpin for aya::maps::PerCpuArray<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1996. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1997. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1998. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::From<T>
  1999. pub fn aya::maps::PerCpuArray<T, V>::into(self) -> U
  2000. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::Into<T>
  2001. pub type aya::maps::PerCpuArray<T, V>::Error = core::convert::Infallible
  2002. pub fn aya::maps::PerCpuArray<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2003. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::TryFrom<T>
  2004. pub type aya::maps::PerCpuArray<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2005. pub fn aya::maps::PerCpuArray<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2006. impl<T> core::any::Any for aya::maps::PerCpuArray<T, V> where T: 'static + ?core::marker::Sized
  2007. pub fn aya::maps::PerCpuArray<T, V>::type_id(&self) -> core::any::TypeId
  2008. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  2009. pub fn aya::maps::PerCpuArray<T, V>::borrow(&self) -> &T
  2010. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  2011. pub fn aya::maps::PerCpuArray<T, V>::borrow_mut(&mut self) -> &mut T
  2012. impl<T> core::convert::From<T> for aya::maps::PerCpuArray<T, V>
  2013. pub fn aya::maps::PerCpuArray<T, V>::from(t: T) -> T
  2014. pub struct aya::maps::PerCpuHashMap<T, K: aya::Pod, V: aya::Pod>
  2015. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2016. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2017. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues<V>, Self>
  2018. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  2019. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2020. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2021. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2022. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2023. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  2024. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  2025. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  2026. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2027. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  2028. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  2029. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2030. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  2031. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  2032. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2033. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2034. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2035. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2036. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Freeze
  2037. impl<T, K, V> core::marker::Send for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  2038. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  2039. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  2040. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  2041. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  2042. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::From<T>
  2043. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::into(self) -> U
  2044. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::Into<T>
  2045. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = core::convert::Infallible
  2046. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2047. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::TryFrom<T>
  2048. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2049. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2050. impl<T> core::any::Any for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: 'static + ?core::marker::Sized
  2051. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  2052. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  2053. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow(&self) -> &T
  2054. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  2055. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  2056. impl<T> core::convert::From<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2057. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::from(t: T) -> T
  2058. pub struct aya::maps::PerCpuValues<T: aya::Pod>
  2059. impl<T: aya::Pod> core::convert::TryFrom<alloc::vec::Vec<T>> for aya::maps::PerCpuValues<T>
  2060. pub type aya::maps::PerCpuValues<T>::Error = std::io::error::Error
  2061. pub fn aya::maps::PerCpuValues<T>::try_from(values: alloc::vec::Vec<T>) -> core::result::Result<Self, Self::Error>
  2062. impl<T: aya::Pod> core::ops::deref::Deref for aya::maps::PerCpuValues<T>
  2063. pub type aya::maps::PerCpuValues<T>::Target = alloc::boxed::Box<[T]>
  2064. pub fn aya::maps::PerCpuValues<T>::deref(&self) -> &Self::Target
  2065. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2066. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2067. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2068. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  2069. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2070. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  2071. impl<T: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::PerCpuValues<T>
  2072. pub fn aya::maps::PerCpuValues<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2073. impl<T> core::marker::Freeze for aya::maps::PerCpuValues<T>
  2074. impl<T> core::marker::Send for aya::maps::PerCpuValues<T> where T: core::marker::Send
  2075. impl<T> core::marker::Sync for aya::maps::PerCpuValues<T> where T: core::marker::Sync
  2076. impl<T> core::marker::Unpin for aya::maps::PerCpuValues<T>
  2077. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuValues<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2078. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuValues<T> where T: core::panic::unwind_safe::UnwindSafe
  2079. impl<P, T> core::ops::deref::Receiver for aya::maps::PerCpuValues<T> where P: core::ops::deref::Deref<Target = T> + ?core::marker::Sized, T: ?core::marker::Sized
  2080. pub type aya::maps::PerCpuValues<T>::Target = T
  2081. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuValues<T> where U: core::convert::From<T>
  2082. pub fn aya::maps::PerCpuValues<T>::into(self) -> U
  2083. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuValues<T> where U: core::convert::Into<T>
  2084. pub type aya::maps::PerCpuValues<T>::Error = core::convert::Infallible
  2085. pub fn aya::maps::PerCpuValues<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2086. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuValues<T> where U: core::convert::TryFrom<T>
  2087. pub type aya::maps::PerCpuValues<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2088. pub fn aya::maps::PerCpuValues<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2089. impl<T> core::any::Any for aya::maps::PerCpuValues<T> where T: 'static + ?core::marker::Sized
  2090. pub fn aya::maps::PerCpuValues<T>::type_id(&self) -> core::any::TypeId
  2091. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuValues<T> where T: ?core::marker::Sized
  2092. pub fn aya::maps::PerCpuValues<T>::borrow(&self) -> &T
  2093. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuValues<T> where T: ?core::marker::Sized
  2094. pub fn aya::maps::PerCpuValues<T>::borrow_mut(&mut self) -> &mut T
  2095. impl<T> core::convert::From<T> for aya::maps::PerCpuValues<T>
  2096. pub fn aya::maps::PerCpuValues<T>::from(t: T) -> T
  2097. pub struct aya::maps::PerfEventArray<T>
  2098. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  2099. pub fn aya::maps::perf::PerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2100. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  2101. pub fn aya::maps::perf::PerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::PerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  2102. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  2103. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  2104. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2105. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  2106. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2107. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2108. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  2109. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2110. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2111. impl<T> core::marker::Freeze for aya::maps::perf::PerfEventArray<T>
  2112. impl<T> core::marker::Send for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  2113. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  2114. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArray<T>
  2115. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2116. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2117. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::From<T>
  2118. pub fn aya::maps::perf::PerfEventArray<T>::into(self) -> U
  2119. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::Into<T>
  2120. pub type aya::maps::perf::PerfEventArray<T>::Error = core::convert::Infallible
  2121. pub fn aya::maps::perf::PerfEventArray<T>::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::maps::perf::PerfEventArray<T> where U: core::convert::TryFrom<T>
  2123. pub type aya::maps::perf::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2124. pub fn aya::maps::perf::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2125. impl<T> core::any::Any for aya::maps::perf::PerfEventArray<T> where T: 'static + ?core::marker::Sized
  2126. pub fn aya::maps::perf::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  2127. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  2128. pub fn aya::maps::perf::PerfEventArray<T>::borrow(&self) -> &T
  2129. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  2130. pub fn aya::maps::perf::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  2131. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArray<T>
  2132. pub fn aya::maps::perf::PerfEventArray<T>::from(t: T) -> T
  2133. pub struct aya::maps::ProgramArray<T>
  2134. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2135. pub fn aya::maps::ProgramArray<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  2136. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2137. pub fn aya::maps::ProgramArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2138. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2139. pub fn aya::maps::ProgramArray<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  2140. pub fn aya::maps::ProgramArray<T>::set(&mut self, index: u32, program: &aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2141. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  2142. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  2143. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2144. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  2145. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2146. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2147. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  2148. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2149. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2150. impl<T> core::marker::Freeze for aya::maps::ProgramArray<T> where T: core::marker::Freeze
  2151. impl<T> core::marker::Send for aya::maps::ProgramArray<T> where T: core::marker::Send
  2152. impl<T> core::marker::Sync for aya::maps::ProgramArray<T> where T: core::marker::Sync
  2153. impl<T> core::marker::Unpin for aya::maps::ProgramArray<T> where T: core::marker::Unpin
  2154. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2155. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::UnwindSafe
  2156. impl<T, U> core::convert::Into<U> for aya::maps::ProgramArray<T> where U: core::convert::From<T>
  2157. pub fn aya::maps::ProgramArray<T>::into(self) -> U
  2158. impl<T, U> core::convert::TryFrom<U> for aya::maps::ProgramArray<T> where U: core::convert::Into<T>
  2159. pub type aya::maps::ProgramArray<T>::Error = core::convert::Infallible
  2160. pub fn aya::maps::ProgramArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2161. impl<T, U> core::convert::TryInto<U> for aya::maps::ProgramArray<T> where U: core::convert::TryFrom<T>
  2162. pub type aya::maps::ProgramArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2163. pub fn aya::maps::ProgramArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2164. impl<T> core::any::Any for aya::maps::ProgramArray<T> where T: 'static + ?core::marker::Sized
  2165. pub fn aya::maps::ProgramArray<T>::type_id(&self) -> core::any::TypeId
  2166. impl<T> core::borrow::Borrow<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  2167. pub fn aya::maps::ProgramArray<T>::borrow(&self) -> &T
  2168. impl<T> core::borrow::BorrowMut<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  2169. pub fn aya::maps::ProgramArray<T>::borrow_mut(&mut self) -> &mut T
  2170. impl<T> core::convert::From<T> for aya::maps::ProgramArray<T>
  2171. pub fn aya::maps::ProgramArray<T>::from(t: T) -> T
  2172. pub struct aya::maps::Queue<T, V: aya::Pod>
  2173. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2174. pub fn aya::maps::queue::Queue<T, V>::capacity(&self) -> u32
  2175. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2176. pub fn aya::maps::queue::Queue<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2177. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2178. pub fn aya::maps::queue::Queue<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  2179. pub fn aya::maps::queue::Queue<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2180. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  2181. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2182. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2183. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  2184. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2185. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2186. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  2187. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  2188. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2189. impl<T, V> core::marker::Freeze for aya::maps::queue::Queue<T, V> where T: core::marker::Freeze
  2190. impl<T, V> core::marker::Send for aya::maps::queue::Queue<T, V> where T: core::marker::Send, V: core::marker::Send
  2191. impl<T, V> core::marker::Sync for aya::maps::queue::Queue<T, V> where T: core::marker::Sync, V: core::marker::Sync
  2192. impl<T, V> core::marker::Unpin for aya::maps::queue::Queue<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  2193. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  2194. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  2195. impl<T, U> core::convert::Into<U> for aya::maps::queue::Queue<T, V> where U: core::convert::From<T>
  2196. pub fn aya::maps::queue::Queue<T, V>::into(self) -> U
  2197. impl<T, U> core::convert::TryFrom<U> for aya::maps::queue::Queue<T, V> where U: core::convert::Into<T>
  2198. pub type aya::maps::queue::Queue<T, V>::Error = core::convert::Infallible
  2199. pub fn aya::maps::queue::Queue<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2200. impl<T, U> core::convert::TryInto<U> for aya::maps::queue::Queue<T, V> where U: core::convert::TryFrom<T>
  2201. pub type aya::maps::queue::Queue<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2202. pub fn aya::maps::queue::Queue<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2203. impl<T> core::any::Any for aya::maps::queue::Queue<T, V> where T: 'static + ?core::marker::Sized
  2204. pub fn aya::maps::queue::Queue<T, V>::type_id(&self) -> core::any::TypeId
  2205. impl<T> core::borrow::Borrow<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  2206. pub fn aya::maps::queue::Queue<T, V>::borrow(&self) -> &T
  2207. impl<T> core::borrow::BorrowMut<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  2208. pub fn aya::maps::queue::Queue<T, V>::borrow_mut(&mut self) -> &mut T
  2209. impl<T> core::convert::From<T> for aya::maps::queue::Queue<T, V>
  2210. pub fn aya::maps::queue::Queue<T, V>::from(t: T) -> T
  2211. pub struct aya::maps::RingBuf<T>
  2212. impl<T> aya::maps::ring_buf::RingBuf<T>
  2213. pub fn aya::maps::ring_buf::RingBuf<T>::next(&mut self) -> core::option::Option<aya::maps::ring_buf::RingBufItem<'_>>
  2214. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  2215. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  2216. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2217. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  2218. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2219. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2220. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  2221. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2222. pub fn aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2223. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::ring_buf::RingBuf<T>
  2224. pub fn aya::maps::ring_buf::RingBuf<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  2225. impl<T> core::marker::Freeze for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Freeze
  2226. impl<T> core::marker::Send for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Send
  2227. impl<T> core::marker::Sync for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sync
  2228. impl<T> core::marker::Unpin for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Unpin
  2229. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2230. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::UnwindSafe
  2231. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::From<T>
  2232. pub fn aya::maps::ring_buf::RingBuf<T>::into(self) -> U
  2233. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::Into<T>
  2234. pub type aya::maps::ring_buf::RingBuf<T>::Error = core::convert::Infallible
  2235. pub fn aya::maps::ring_buf::RingBuf<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2236. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::TryFrom<T>
  2237. pub type aya::maps::ring_buf::RingBuf<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2238. pub fn aya::maps::ring_buf::RingBuf<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2239. impl<T> core::any::Any for aya::maps::ring_buf::RingBuf<T> where T: 'static + ?core::marker::Sized
  2240. pub fn aya::maps::ring_buf::RingBuf<T>::type_id(&self) -> core::any::TypeId
  2241. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  2242. pub fn aya::maps::ring_buf::RingBuf<T>::borrow(&self) -> &T
  2243. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  2244. pub fn aya::maps::ring_buf::RingBuf<T>::borrow_mut(&mut self) -> &mut T
  2245. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBuf<T>
  2246. pub fn aya::maps::ring_buf::RingBuf<T>::from(t: T) -> T
  2247. pub struct aya::maps::SockHash<T, K>
  2248. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  2249. pub fn aya::maps::SockHash<T, K>::fd(&self) -> &aya::maps::sock::SockMapFd
  2250. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K, flags: u64) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2251. pub fn aya::maps::SockHash<T, K>::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self>
  2252. pub fn aya::maps::SockHash<T, K>::keys(&self) -> aya::maps::MapKeys<'_, K>
  2253. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::SockHash<T, V>
  2254. pub fn aya::maps::SockHash<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2255. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  2256. pub fn aya::maps::SockHash<T, K>::insert<I: std::os::fd::raw::AsRawFd>(&mut self, key: impl core::borrow::Borrow<K>, value: I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2257. pub fn aya::maps::SockHash<T, K>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  2258. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  2259. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2260. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2261. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  2262. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2263. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2264. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  2265. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2266. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  2267. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  2268. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  2269. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2270. impl<T, K> core::marker::Freeze for aya::maps::SockHash<T, K> where T: core::marker::Freeze
  2271. impl<T, K> core::marker::Send for aya::maps::SockHash<T, K> where T: core::marker::Send, K: core::marker::Send
  2272. impl<T, K> core::marker::Sync for aya::maps::SockHash<T, K> where T: core::marker::Sync, K: core::marker::Sync
  2273. impl<T, K> core::marker::Unpin for aya::maps::SockHash<T, K> where T: core::marker::Unpin, K: core::marker::Unpin
  2274. impl<T, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe
  2275. impl<T, K> core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe
  2276. impl<T, U> core::convert::Into<U> for aya::maps::SockHash<T, K> where U: core::convert::From<T>
  2277. pub fn aya::maps::SockHash<T, K>::into(self) -> U
  2278. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockHash<T, K> where U: core::convert::Into<T>
  2279. pub type aya::maps::SockHash<T, K>::Error = core::convert::Infallible
  2280. pub fn aya::maps::SockHash<T, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2281. impl<T, U> core::convert::TryInto<U> for aya::maps::SockHash<T, K> where U: core::convert::TryFrom<T>
  2282. pub type aya::maps::SockHash<T, K>::Error = <U as core::convert::TryFrom<T>>::Error
  2283. pub fn aya::maps::SockHash<T, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2284. impl<T> core::any::Any for aya::maps::SockHash<T, K> where T: 'static + ?core::marker::Sized
  2285. pub fn aya::maps::SockHash<T, K>::type_id(&self) -> core::any::TypeId
  2286. impl<T> core::borrow::Borrow<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  2287. pub fn aya::maps::SockHash<T, K>::borrow(&self) -> &T
  2288. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  2289. pub fn aya::maps::SockHash<T, K>::borrow_mut(&mut self) -> &mut T
  2290. impl<T> core::convert::From<T> for aya::maps::SockHash<T, K>
  2291. pub fn aya::maps::SockHash<T, K>::from(t: T) -> T
  2292. pub struct aya::maps::SockMap<T>
  2293. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  2294. pub fn aya::maps::SockMap<T>::fd(&self) -> &aya::maps::sock::SockMapFd
  2295. pub fn aya::maps::SockMap<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  2296. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  2297. pub fn aya::maps::SockMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2298. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  2299. pub fn aya::maps::SockMap<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  2300. pub fn aya::maps::SockMap<T>::set<I: std::os::fd::raw::AsRawFd>(&mut self, index: u32, socket: &I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2301. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  2302. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  2303. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2304. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  2305. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2306. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2307. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  2308. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2309. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2310. impl<T> core::marker::Freeze for aya::maps::SockMap<T> where T: core::marker::Freeze
  2311. impl<T> core::marker::Send for aya::maps::SockMap<T> where T: core::marker::Send
  2312. impl<T> core::marker::Sync for aya::maps::SockMap<T> where T: core::marker::Sync
  2313. impl<T> core::marker::Unpin for aya::maps::SockMap<T> where T: core::marker::Unpin
  2314. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2315. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2316. impl<T, U> core::convert::Into<U> for aya::maps::SockMap<T> where U: core::convert::From<T>
  2317. pub fn aya::maps::SockMap<T>::into(self) -> U
  2318. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockMap<T> where U: core::convert::Into<T>
  2319. pub type aya::maps::SockMap<T>::Error = core::convert::Infallible
  2320. pub fn aya::maps::SockMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2321. impl<T, U> core::convert::TryInto<U> for aya::maps::SockMap<T> where U: core::convert::TryFrom<T>
  2322. pub type aya::maps::SockMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2323. pub fn aya::maps::SockMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2324. impl<T> core::any::Any for aya::maps::SockMap<T> where T: 'static + ?core::marker::Sized
  2325. pub fn aya::maps::SockMap<T>::type_id(&self) -> core::any::TypeId
  2326. impl<T> core::borrow::Borrow<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  2327. pub fn aya::maps::SockMap<T>::borrow(&self) -> &T
  2328. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  2329. pub fn aya::maps::SockMap<T>::borrow_mut(&mut self) -> &mut T
  2330. impl<T> core::convert::From<T> for aya::maps::SockMap<T>
  2331. pub fn aya::maps::SockMap<T>::from(t: T) -> T
  2332. pub struct aya::maps::Stack<T, V: aya::Pod>
  2333. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2334. pub fn aya::maps::stack::Stack<T, V>::capacity(&self) -> u32
  2335. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2336. pub fn aya::maps::stack::Stack<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2337. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2338. pub fn aya::maps::stack::Stack<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  2339. pub fn aya::maps::stack::Stack<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2340. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  2341. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2342. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2343. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  2344. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2345. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2346. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  2347. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  2348. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2349. impl<T, V> core::marker::Freeze for aya::maps::stack::Stack<T, V> where T: core::marker::Freeze
  2350. impl<T, V> core::marker::Send for aya::maps::stack::Stack<T, V> where T: core::marker::Send, V: core::marker::Send
  2351. impl<T, V> core::marker::Sync for aya::maps::stack::Stack<T, V> where T: core::marker::Sync, V: core::marker::Sync
  2352. impl<T, V> core::marker::Unpin for aya::maps::stack::Stack<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  2353. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  2354. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  2355. impl<T, U> core::convert::Into<U> for aya::maps::stack::Stack<T, V> where U: core::convert::From<T>
  2356. pub fn aya::maps::stack::Stack<T, V>::into(self) -> U
  2357. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack::Stack<T, V> where U: core::convert::Into<T>
  2358. pub type aya::maps::stack::Stack<T, V>::Error = core::convert::Infallible
  2359. pub fn aya::maps::stack::Stack<T, V>::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::maps::stack::Stack<T, V> where U: core::convert::TryFrom<T>
  2361. pub type aya::maps::stack::Stack<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2362. pub fn aya::maps::stack::Stack<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2363. impl<T> core::any::Any for aya::maps::stack::Stack<T, V> where T: 'static + ?core::marker::Sized
  2364. pub fn aya::maps::stack::Stack<T, V>::type_id(&self) -> core::any::TypeId
  2365. impl<T> core::borrow::Borrow<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  2366. pub fn aya::maps::stack::Stack<T, V>::borrow(&self) -> &T
  2367. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  2368. pub fn aya::maps::stack::Stack<T, V>::borrow_mut(&mut self) -> &mut T
  2369. impl<T> core::convert::From<T> for aya::maps::stack::Stack<T, V>
  2370. pub fn aya::maps::stack::Stack<T, V>::from(t: T) -> T
  2371. pub struct aya::maps::StackTraceMap<T>
  2372. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2373. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, stack_id: &u32, flags: u64) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2374. pub fn aya::maps::stack_trace::StackTraceMap<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self>
  2375. pub fn aya::maps::stack_trace::StackTraceMap<T>::stack_ids(&self) -> aya::maps::MapKeys<'_, u32>
  2376. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2377. pub fn aya::maps::stack_trace::StackTraceMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2378. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2379. pub fn aya::maps::stack_trace::StackTraceMap<T>::remove(&mut self, stack_id: &u32) -> core::result::Result<(), aya::maps::MapError>
  2380. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  2381. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  2382. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2383. impl<'a, T: core::borrow::Borrow<aya::maps::MapData>> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap<T>
  2384. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::IntoIter = aya::maps::MapIter<'a, u32, aya::maps::stack_trace::StackTrace, aya::maps::stack_trace::StackTraceMap<T>>
  2385. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError>
  2386. pub fn &'a aya::maps::stack_trace::StackTraceMap<T>::into_iter(self) -> Self::IntoIter
  2387. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  2388. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2389. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2390. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  2391. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2392. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2393. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  2394. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2395. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  2396. impl<T: core::fmt::Debug> core::fmt::Debug for aya::maps::stack_trace::StackTraceMap<T>
  2397. pub fn aya::maps::stack_trace::StackTraceMap<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2398. impl<T> core::marker::Freeze for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Freeze
  2399. impl<T> core::marker::Send for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Send
  2400. impl<T> core::marker::Sync for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sync
  2401. impl<T> core::marker::Unpin for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Unpin
  2402. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2403. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2404. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::From<T>
  2405. pub fn aya::maps::stack_trace::StackTraceMap<T>::into(self) -> U
  2406. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::Into<T>
  2407. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = core::convert::Infallible
  2408. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2409. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::TryFrom<T>
  2410. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2411. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2412. impl<T> core::any::Any for aya::maps::stack_trace::StackTraceMap<T> where T: 'static + ?core::marker::Sized
  2413. pub fn aya::maps::stack_trace::StackTraceMap<T>::type_id(&self) -> core::any::TypeId
  2414. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  2415. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow(&self) -> &T
  2416. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  2417. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow_mut(&mut self) -> &mut T
  2418. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTraceMap<T>
  2419. pub fn aya::maps::stack_trace::StackTraceMap<T>::from(t: T) -> T
  2420. pub struct aya::maps::XskMap<T>
  2421. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  2422. pub fn aya::maps::XskMap<T>::len(&self) -> u32
  2423. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  2424. pub fn aya::maps::XskMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2425. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  2426. pub fn aya::maps::XskMap<T>::set(&mut self, index: u32, socket_fd: impl std::os::fd::raw::AsRawFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2427. pub fn aya::maps::XskMap<T>::unset(&mut self, index: u32) -> core::result::Result<(), aya::maps::MapError>
  2428. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  2429. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  2430. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2431. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  2432. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2433. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2434. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  2435. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2436. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2437. impl<T> core::marker::Freeze for aya::maps::XskMap<T> where T: core::marker::Freeze
  2438. impl<T> core::marker::Send for aya::maps::XskMap<T> where T: core::marker::Send
  2439. impl<T> core::marker::Sync for aya::maps::XskMap<T> where T: core::marker::Sync
  2440. impl<T> core::marker::Unpin for aya::maps::XskMap<T> where T: core::marker::Unpin
  2441. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2442. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2443. impl<T, U> core::convert::Into<U> for aya::maps::XskMap<T> where U: core::convert::From<T>
  2444. pub fn aya::maps::XskMap<T>::into(self) -> U
  2445. impl<T, U> core::convert::TryFrom<U> for aya::maps::XskMap<T> where U: core::convert::Into<T>
  2446. pub type aya::maps::XskMap<T>::Error = core::convert::Infallible
  2447. pub fn aya::maps::XskMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2448. impl<T, U> core::convert::TryInto<U> for aya::maps::XskMap<T> where U: core::convert::TryFrom<T>
  2449. pub type aya::maps::XskMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2450. pub fn aya::maps::XskMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2451. impl<T> core::any::Any for aya::maps::XskMap<T> where T: 'static + ?core::marker::Sized
  2452. pub fn aya::maps::XskMap<T>::type_id(&self) -> core::any::TypeId
  2453. impl<T> core::borrow::Borrow<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  2454. pub fn aya::maps::XskMap<T>::borrow(&self) -> &T
  2455. impl<T> core::borrow::BorrowMut<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  2456. pub fn aya::maps::XskMap<T>::borrow_mut(&mut self) -> &mut T
  2457. impl<T> core::convert::From<T> for aya::maps::XskMap<T>
  2458. pub fn aya::maps::XskMap<T>::from(t: T) -> T
  2459. pub trait aya::maps::IterableMap<K: aya::Pod, V>
  2460. pub fn aya::maps::IterableMap::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  2461. pub fn aya::maps::IterableMap::map(&self) -> &aya::maps::MapData
  2462. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  2463. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  2464. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2465. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2466. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2467. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2468. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  2469. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  2470. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  2471. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  2472. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2473. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  2474. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  2475. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  2476. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  2477. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  2478. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2479. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  2480. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  2481. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2482. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  2483. pub fn aya::maps::loaded_maps() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::MapInfo, aya::maps::MapError>>
  2484. pub mod aya::pin
  2485. pub enum aya::pin::PinError
  2486. pub aya::pin::PinError::InvalidPinPath
  2487. pub aya::pin::PinError::InvalidPinPath::error: alloc::ffi::c_str::NulError
  2488. pub aya::pin::PinError::InvalidPinPath::path: std::path::PathBuf
  2489. pub aya::pin::PinError::NoFd
  2490. pub aya::pin::PinError::NoFd::name: alloc::string::String
  2491. pub aya::pin::PinError::SyscallError(aya::sys::SyscallError)
  2492. impl core::convert::From<aya::sys::SyscallError> for aya::pin::PinError
  2493. pub fn aya::pin::PinError::from(source: aya::sys::SyscallError) -> Self
  2494. impl core::error::Error for aya::pin::PinError
  2495. pub fn aya::pin::PinError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  2496. impl core::fmt::Debug for aya::pin::PinError
  2497. pub fn aya::pin::PinError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2498. impl core::fmt::Display for aya::pin::PinError
  2499. pub fn aya::pin::PinError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2500. impl core::marker::Freeze for aya::pin::PinError
  2501. impl core::marker::Send for aya::pin::PinError
  2502. impl core::marker::Sync for aya::pin::PinError
  2503. impl core::marker::Unpin for aya::pin::PinError
  2504. impl !core::panic::unwind_safe::RefUnwindSafe for aya::pin::PinError
  2505. impl !core::panic::unwind_safe::UnwindSafe for aya::pin::PinError
  2506. impl<T, U> core::convert::Into<U> for aya::pin::PinError where U: core::convert::From<T>
  2507. pub fn aya::pin::PinError::into(self) -> U
  2508. impl<T, U> core::convert::TryFrom<U> for aya::pin::PinError where U: core::convert::Into<T>
  2509. pub type aya::pin::PinError::Error = core::convert::Infallible
  2510. pub fn aya::pin::PinError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2511. impl<T, U> core::convert::TryInto<U> for aya::pin::PinError where U: core::convert::TryFrom<T>
  2512. pub type aya::pin::PinError::Error = <U as core::convert::TryFrom<T>>::Error
  2513. pub fn aya::pin::PinError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2514. impl<T> alloc::string::ToString for aya::pin::PinError where T: core::fmt::Display + ?core::marker::Sized
  2515. pub fn aya::pin::PinError::to_string(&self) -> alloc::string::String
  2516. impl<T> core::any::Any for aya::pin::PinError where T: 'static + ?core::marker::Sized
  2517. pub fn aya::pin::PinError::type_id(&self) -> core::any::TypeId
  2518. impl<T> core::borrow::Borrow<T> for aya::pin::PinError where T: ?core::marker::Sized
  2519. pub fn aya::pin::PinError::borrow(&self) -> &T
  2520. impl<T> core::borrow::BorrowMut<T> for aya::pin::PinError where T: ?core::marker::Sized
  2521. pub fn aya::pin::PinError::borrow_mut(&mut self) -> &mut T
  2522. impl<T> core::convert::From<T> for aya::pin::PinError
  2523. pub fn aya::pin::PinError::from(t: T) -> T
  2524. pub mod aya::programs
  2525. pub use aya::programs::CgroupSockAddrAttachType
  2526. pub use aya::programs::CgroupSockAttachType
  2527. pub use aya::programs::CgroupSockoptAttachType
  2528. pub mod aya::programs::cgroup_device
  2529. pub struct aya::programs::cgroup_device::CgroupDevice
  2530. impl aya::programs::cgroup_device::CgroupDevice
  2531. pub const aya::programs::cgroup_device::CgroupDevice::PROGRAM_TYPE: aya::programs::ProgramType
  2532. pub fn aya::programs::cgroup_device::CgroupDevice::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLinkId, aya::programs::ProgramError>
  2533. pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2534. pub fn aya::programs::cgroup_device::CgroupDevice::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::cgroup_device::CgroupDeviceLink>, aya::programs::ProgramError>
  2535. impl aya::programs::cgroup_device::CgroupDevice
  2536. pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2537. pub fn aya::programs::cgroup_device::CgroupDevice::take_link(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLink, aya::programs::ProgramError>
  2538. impl aya::programs::cgroup_device::CgroupDevice
  2539. pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2540. impl aya::programs::cgroup_device::CgroupDevice
  2541. pub fn aya::programs::cgroup_device::CgroupDevice::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  2542. impl aya::programs::cgroup_device::CgroupDevice
  2543. pub fn aya::programs::cgroup_device::CgroupDevice::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  2544. impl aya::programs::cgroup_device::CgroupDevice
  2545. pub fn aya::programs::cgroup_device::CgroupDevice::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2546. impl aya::programs::cgroup_device::CgroupDevice
  2547. pub fn aya::programs::cgroup_device::CgroupDevice::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2548. pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2549. impl aya::programs::cgroup_device::CgroupDevice
  2550. pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2551. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice
  2552. pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2553. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice
  2554. pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self)
  2555. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  2556. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  2557. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  2558. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  2559. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  2560. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  2561. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDevice
  2562. impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice
  2563. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice
  2564. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice
  2565. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice
  2566. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice
  2567. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From<T>
  2568. pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U
  2569. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into<T>
  2570. pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible
  2571. pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2572. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom<T>
  2573. pub type aya::programs::cgroup_device::CgroupDevice::Error = <U as core::convert::TryFrom<T>>::Error
  2574. pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2575. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + ?core::marker::Sized
  2576. pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId
  2577. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  2578. pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T
  2579. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  2580. pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T
  2581. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDevice
  2582. pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T
  2583. pub struct aya::programs::cgroup_device::CgroupDeviceLink(_)
  2584. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  2585. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  2586. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2587. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  2588. impl core::cmp::Eq for aya::programs::cgroup_device::CgroupDeviceLink
  2589. impl core::cmp::PartialEq for aya::programs::cgroup_device::CgroupDeviceLink
  2590. pub fn aya::programs::cgroup_device::CgroupDeviceLink::eq(&self, other: &Self) -> bool
  2591. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLink
  2592. pub fn aya::programs::cgroup_device::CgroupDeviceLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2593. impl core::hash::Hash for aya::programs::cgroup_device::CgroupDeviceLink
  2594. pub fn aya::programs::cgroup_device::CgroupDeviceLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2595. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDeviceLink
  2596. pub fn aya::programs::cgroup_device::CgroupDeviceLink::drop(&mut self)
  2597. impl equivalent::Equivalent<aya::programs::cgroup_device::CgroupDeviceLink> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2598. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::equivalent(&self, key: &aya::programs::cgroup_device::CgroupDeviceLink) -> bool
  2599. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDeviceLink
  2600. impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLink
  2601. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLink
  2602. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLink
  2603. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink
  2604. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink
  2605. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_device::CgroupDeviceLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2606. pub fn aya::programs::cgroup_device::CgroupDeviceLink::equivalent(&self, key: &K) -> bool
  2607. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::From<T>
  2608. pub fn aya::programs::cgroup_device::CgroupDeviceLink::into(self) -> U
  2609. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::Into<T>
  2610. pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = core::convert::Infallible
  2611. pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2612. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::TryFrom<T>
  2613. pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = <U as core::convert::TryFrom<T>>::Error
  2614. pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2615. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDeviceLink where T: 'static + ?core::marker::Sized
  2616. pub fn aya::programs::cgroup_device::CgroupDeviceLink::type_id(&self) -> core::any::TypeId
  2617. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDeviceLink where T: ?core::marker::Sized
  2618. pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow(&self) -> &T
  2619. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDeviceLink where T: ?core::marker::Sized
  2620. pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow_mut(&mut self) -> &mut T
  2621. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDeviceLink
  2622. pub fn aya::programs::cgroup_device::CgroupDeviceLink::from(t: T) -> T
  2623. pub struct aya::programs::cgroup_device::CgroupDeviceLinkId(_)
  2624. impl core::cmp::Eq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2625. impl core::cmp::PartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2626. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::eq(&self, other: &aya::programs::cgroup_device::CgroupDeviceLinkId) -> bool
  2627. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLinkId
  2628. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2629. impl core::hash::Hash for aya::programs::cgroup_device::CgroupDeviceLinkId
  2630. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2631. impl core::marker::StructuralPartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2632. impl equivalent::Equivalent<aya::programs::cgroup_device::CgroupDeviceLink> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2633. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::equivalent(&self, key: &aya::programs::cgroup_device::CgroupDeviceLink) -> bool
  2634. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDeviceLinkId
  2635. impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLinkId
  2636. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLinkId
  2637. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLinkId
  2638. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId
  2639. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId
  2640. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_device::CgroupDeviceLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2641. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::equivalent(&self, key: &K) -> bool
  2642. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::From<T>
  2643. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::into(self) -> U
  2644. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::Into<T>
  2645. pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = core::convert::Infallible
  2646. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2647. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::TryFrom<T>
  2648. pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2649. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2650. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDeviceLinkId where T: 'static + ?core::marker::Sized
  2651. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::type_id(&self) -> core::any::TypeId
  2652. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDeviceLinkId where T: ?core::marker::Sized
  2653. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow(&self) -> &T
  2654. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDeviceLinkId where T: ?core::marker::Sized
  2655. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow_mut(&mut self) -> &mut T
  2656. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2657. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::from(t: T) -> T
  2658. pub mod aya::programs::cgroup_skb
  2659. pub enum aya::programs::cgroup_skb::CgroupSkbAttachType
  2660. pub aya::programs::cgroup_skb::CgroupSkbAttachType::Egress
  2661. pub aya::programs::cgroup_skb::CgroupSkbAttachType::Ingress
  2662. impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType
  2663. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType
  2664. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType
  2665. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2666. impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType
  2667. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbAttachType
  2668. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType
  2669. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType
  2670. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType
  2671. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  2672. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  2673. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From<T>
  2674. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U
  2675. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into<T>
  2676. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible
  2677. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::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::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom<T>
  2679. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  2680. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2681. impl<T> alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  2682. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T
  2683. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T)
  2684. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T
  2685. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + ?core::marker::Sized
  2686. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId
  2687. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  2688. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T
  2689. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  2690. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T
  2691. impl<T> core::clone::CloneToUninit for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  2692. pub unsafe fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_to_uninit(&self, dest: *mut u8)
  2693. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbAttachType
  2694. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T
  2695. pub struct aya::programs::cgroup_skb::CgroupSkb
  2696. impl aya::programs::cgroup_skb::CgroupSkb
  2697. pub const aya::programs::cgroup_skb::CgroupSkb::PROGRAM_TYPE: aya::programs::ProgramType
  2698. pub fn aya::programs::cgroup_skb::CgroupSkb::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLinkId, aya::programs::ProgramError>
  2699. pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>
  2700. pub fn aya::programs::cgroup_skb::CgroupSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, expected_attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2701. pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2702. impl aya::programs::cgroup_skb::CgroupSkb
  2703. pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2704. pub fn aya::programs::cgroup_skb::CgroupSkb::take_link(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLink, aya::programs::ProgramError>
  2705. impl aya::programs::cgroup_skb::CgroupSkb
  2706. pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2707. impl aya::programs::cgroup_skb::CgroupSkb
  2708. pub fn aya::programs::cgroup_skb::CgroupSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>) -> core::result::Result<Self, aya::programs::ProgramError>
  2709. impl aya::programs::cgroup_skb::CgroupSkb
  2710. pub fn aya::programs::cgroup_skb::CgroupSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2711. impl aya::programs::cgroup_skb::CgroupSkb
  2712. pub fn aya::programs::cgroup_skb::CgroupSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2713. pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2714. impl aya::programs::cgroup_skb::CgroupSkb
  2715. pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2716. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb
  2717. pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2718. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb
  2719. pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self)
  2720. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  2721. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  2722. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  2723. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  2724. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  2725. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  2726. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkb
  2727. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb
  2728. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb
  2729. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb
  2730. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  2731. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  2732. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From<T>
  2733. pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U
  2734. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into<T>
  2735. pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible
  2736. pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2737. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom<T>
  2738. pub type aya::programs::cgroup_skb::CgroupSkb::Error = <U as core::convert::TryFrom<T>>::Error
  2739. pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2740. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + ?core::marker::Sized
  2741. pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId
  2742. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  2743. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T
  2744. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  2745. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T
  2746. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkb
  2747. pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T
  2748. pub struct aya::programs::cgroup_skb::CgroupSkbLink(_)
  2749. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  2750. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  2751. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2752. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  2753. impl core::cmp::Eq for aya::programs::cgroup_skb::CgroupSkbLink
  2754. impl core::cmp::PartialEq for aya::programs::cgroup_skb::CgroupSkbLink
  2755. pub fn aya::programs::cgroup_skb::CgroupSkbLink::eq(&self, other: &Self) -> bool
  2756. impl core::convert::TryFrom<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::links::FdLink
  2757. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  2758. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_skb::CgroupSkbLink) -> core::result::Result<Self, Self::Error>
  2759. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLink
  2760. pub fn aya::programs::cgroup_skb::CgroupSkbLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2761. impl core::hash::Hash for aya::programs::cgroup_skb::CgroupSkbLink
  2762. pub fn aya::programs::cgroup_skb::CgroupSkbLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2763. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkbLink
  2764. pub fn aya::programs::cgroup_skb::CgroupSkbLink::drop(&mut self)
  2765. impl equivalent::Equivalent<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2766. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::equivalent(&self, key: &aya::programs::cgroup_skb::CgroupSkbLink) -> bool
  2767. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbLink
  2768. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLink
  2769. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLink
  2770. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLink
  2771. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink
  2772. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink
  2773. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_skb::CgroupSkbLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2774. pub fn aya::programs::cgroup_skb::CgroupSkbLink::equivalent(&self, key: &K) -> bool
  2775. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::From<T>
  2776. pub fn aya::programs::cgroup_skb::CgroupSkbLink::into(self) -> U
  2777. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::Into<T>
  2778. pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = core::convert::Infallible
  2779. pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2780. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::TryFrom<T>
  2781. pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = <U as core::convert::TryFrom<T>>::Error
  2782. pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2783. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbLink where T: 'static + ?core::marker::Sized
  2784. pub fn aya::programs::cgroup_skb::CgroupSkbLink::type_id(&self) -> core::any::TypeId
  2785. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbLink where T: ?core::marker::Sized
  2786. pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow(&self) -> &T
  2787. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbLink where T: ?core::marker::Sized
  2788. pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow_mut(&mut self) -> &mut T
  2789. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbLink
  2790. pub fn aya::programs::cgroup_skb::CgroupSkbLink::from(t: T) -> T
  2791. pub struct aya::programs::cgroup_skb::CgroupSkbLinkId(_)
  2792. impl core::cmp::Eq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2793. impl core::cmp::PartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2794. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::eq(&self, other: &aya::programs::cgroup_skb::CgroupSkbLinkId) -> bool
  2795. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLinkId
  2796. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2797. impl core::hash::Hash for aya::programs::cgroup_skb::CgroupSkbLinkId
  2798. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2799. impl core::marker::StructuralPartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2800. impl equivalent::Equivalent<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2801. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::equivalent(&self, key: &aya::programs::cgroup_skb::CgroupSkbLink) -> bool
  2802. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbLinkId
  2803. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLinkId
  2804. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLinkId
  2805. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLinkId
  2806. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId
  2807. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId
  2808. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_skb::CgroupSkbLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2809. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::equivalent(&self, key: &K) -> bool
  2810. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::From<T>
  2811. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::into(self) -> U
  2812. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::Into<T>
  2813. pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = core::convert::Infallible
  2814. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2815. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::TryFrom<T>
  2816. pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2817. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2818. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbLinkId where T: 'static + ?core::marker::Sized
  2819. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::type_id(&self) -> core::any::TypeId
  2820. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbLinkId where T: ?core::marker::Sized
  2821. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow(&self) -> &T
  2822. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbLinkId where T: ?core::marker::Sized
  2823. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow_mut(&mut self) -> &mut T
  2824. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2825. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::from(t: T) -> T
  2826. pub mod aya::programs::cgroup_sock
  2827. pub use aya::programs::cgroup_sock::CgroupSockAttachType
  2828. pub struct aya::programs::cgroup_sock::CgroupSock
  2829. impl aya::programs::cgroup_sock::CgroupSock
  2830. pub const aya::programs::cgroup_sock::CgroupSock::PROGRAM_TYPE: aya::programs::ProgramType
  2831. pub fn aya::programs::cgroup_sock::CgroupSock::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLinkId, aya::programs::ProgramError>
  2832. pub fn aya::programs::cgroup_sock::CgroupSock::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2833. pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2834. impl aya::programs::cgroup_sock::CgroupSock
  2835. pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2836. pub fn aya::programs::cgroup_sock::CgroupSock::take_link(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLink, aya::programs::ProgramError>
  2837. impl aya::programs::cgroup_sock::CgroupSock
  2838. pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2839. impl aya::programs::cgroup_sock::CgroupSock
  2840. pub fn aya::programs::cgroup_sock::CgroupSock::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2841. impl aya::programs::cgroup_sock::CgroupSock
  2842. pub fn aya::programs::cgroup_sock::CgroupSock::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2843. pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2844. impl aya::programs::cgroup_sock::CgroupSock
  2845. pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2846. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock
  2847. pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2848. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock
  2849. pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self)
  2850. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  2851. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  2852. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  2853. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  2854. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  2855. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  2856. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSock
  2857. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock
  2858. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock
  2859. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock
  2860. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock
  2861. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock
  2862. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From<T>
  2863. pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U
  2864. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into<T>
  2865. pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible
  2866. pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2867. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom<T>
  2868. pub type aya::programs::cgroup_sock::CgroupSock::Error = <U as core::convert::TryFrom<T>>::Error
  2869. pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2870. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + ?core::marker::Sized
  2871. pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId
  2872. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  2873. pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T
  2874. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  2875. pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T
  2876. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSock
  2877. pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T
  2878. pub struct aya::programs::cgroup_sock::CgroupSockLink(_)
  2879. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  2880. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  2881. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2882. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  2883. impl core::cmp::Eq for aya::programs::cgroup_sock::CgroupSockLink
  2884. impl core::cmp::PartialEq for aya::programs::cgroup_sock::CgroupSockLink
  2885. pub fn aya::programs::cgroup_sock::CgroupSockLink::eq(&self, other: &Self) -> bool
  2886. impl core::convert::TryFrom<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::links::FdLink
  2887. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  2888. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_sock::CgroupSockLink) -> core::result::Result<Self, Self::Error>
  2889. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLink
  2890. pub fn aya::programs::cgroup_sock::CgroupSockLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2891. impl core::hash::Hash for aya::programs::cgroup_sock::CgroupSockLink
  2892. pub fn aya::programs::cgroup_sock::CgroupSockLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2893. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSockLink
  2894. pub fn aya::programs::cgroup_sock::CgroupSockLink::drop(&mut self)
  2895. impl equivalent::Equivalent<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::cgroup_sock::CgroupSockLinkId
  2896. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::equivalent(&self, key: &aya::programs::cgroup_sock::CgroupSockLink) -> bool
  2897. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSockLink
  2898. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLink
  2899. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLink
  2900. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLink
  2901. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLink
  2902. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLink
  2903. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock::CgroupSockLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2904. pub fn aya::programs::cgroup_sock::CgroupSockLink::equivalent(&self, key: &K) -> bool
  2905. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::From<T>
  2906. pub fn aya::programs::cgroup_sock::CgroupSockLink::into(self) -> U
  2907. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::Into<T>
  2908. pub type aya::programs::cgroup_sock::CgroupSockLink::Error = core::convert::Infallible
  2909. pub fn aya::programs::cgroup_sock::CgroupSockLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2910. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::TryFrom<T>
  2911. pub type aya::programs::cgroup_sock::CgroupSockLink::Error = <U as core::convert::TryFrom<T>>::Error
  2912. pub fn aya::programs::cgroup_sock::CgroupSockLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2913. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSockLink where T: 'static + ?core::marker::Sized
  2914. pub fn aya::programs::cgroup_sock::CgroupSockLink::type_id(&self) -> core::any::TypeId
  2915. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSockLink where T: ?core::marker::Sized
  2916. pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow(&self) -> &T
  2917. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSockLink where T: ?core::marker::Sized
  2918. pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow_mut(&mut self) -> &mut T
  2919. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSockLink
  2920. pub fn aya::programs::cgroup_sock::CgroupSockLink::from(t: T) -> T
  2921. pub struct aya::programs::cgroup_sock::CgroupSockLinkId(_)
  2922. impl core::cmp::Eq for aya::programs::cgroup_sock::CgroupSockLinkId
  2923. impl core::cmp::PartialEq for aya::programs::cgroup_sock::CgroupSockLinkId
  2924. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::eq(&self, other: &aya::programs::cgroup_sock::CgroupSockLinkId) -> bool
  2925. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLinkId
  2926. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2927. impl core::hash::Hash for aya::programs::cgroup_sock::CgroupSockLinkId
  2928. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2929. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock::CgroupSockLinkId
  2930. impl equivalent::Equivalent<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::cgroup_sock::CgroupSockLinkId
  2931. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::equivalent(&self, key: &aya::programs::cgroup_sock::CgroupSockLink) -> bool
  2932. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSockLinkId
  2933. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLinkId
  2934. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLinkId
  2935. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLinkId
  2936. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId
  2937. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId
  2938. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock::CgroupSockLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2939. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::equivalent(&self, key: &K) -> bool
  2940. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::From<T>
  2941. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::into(self) -> U
  2942. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::Into<T>
  2943. pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = core::convert::Infallible
  2944. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2945. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::TryFrom<T>
  2946. pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2947. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2948. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSockLinkId where T: 'static + ?core::marker::Sized
  2949. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::type_id(&self) -> core::any::TypeId
  2950. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSockLinkId where T: ?core::marker::Sized
  2951. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow(&self) -> &T
  2952. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSockLinkId where T: ?core::marker::Sized
  2953. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow_mut(&mut self) -> &mut T
  2954. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSockLinkId
  2955. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::from(t: T) -> T
  2956. pub mod aya::programs::cgroup_sock_addr
  2957. pub use aya::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  2958. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddr
  2959. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2960. pub const aya::programs::cgroup_sock_addr::CgroupSockAddr::PROGRAM_TYPE: aya::programs::ProgramType
  2961. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId, aya::programs::ProgramError>
  2962. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2963. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2964. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2965. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::detach(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2966. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::take_link(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLink, aya::programs::ProgramError>
  2967. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2968. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2969. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2970. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2971. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2972. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2973. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2974. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2975. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2976. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2977. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2978. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2979. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self)
  2980. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  2981. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  2982. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  2983. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  2984. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  2985. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  2986. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2987. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2988. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2989. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2990. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2991. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2992. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From<T>
  2993. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U
  2994. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into<T>
  2995. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible
  2996. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2997. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom<T>
  2998. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = <U as core::convert::TryFrom<T>>::Error
  2999. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3000. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + ?core::marker::Sized
  3001. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId
  3002. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  3003. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T
  3004. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  3005. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T
  3006. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr
  3007. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T
  3008. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLink(_)
  3009. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3010. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3011. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3012. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  3013. impl core::cmp::Eq for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3014. impl core::cmp::PartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3015. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::eq(&self, other: &Self) -> bool
  3016. impl core::convert::TryFrom<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::links::FdLink
  3017. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3018. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> core::result::Result<Self, Self::Error>
  3019. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3020. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3021. impl core::hash::Hash for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3022. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3023. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3024. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::drop(&mut self)
  3025. impl equivalent::Equivalent<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3026. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::equivalent(&self, key: &aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> bool
  3027. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3028. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3029. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3030. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3031. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3032. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3033. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3034. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::equivalent(&self, key: &K) -> bool
  3035. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::From<T>
  3036. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::into(self) -> U
  3037. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::Into<T>
  3038. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = core::convert::Infallible
  3039. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3040. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::TryFrom<T>
  3041. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = <U as core::convert::TryFrom<T>>::Error
  3042. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3043. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: 'static + ?core::marker::Sized
  3044. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::type_id(&self) -> core::any::TypeId
  3045. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: ?core::marker::Sized
  3046. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow(&self) -> &T
  3047. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: ?core::marker::Sized
  3048. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow_mut(&mut self) -> &mut T
  3049. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3050. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::from(t: T) -> T
  3051. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId(_)
  3052. impl core::cmp::Eq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3053. impl core::cmp::PartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3054. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::eq(&self, other: &aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> bool
  3055. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3056. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3057. impl core::hash::Hash for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3058. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3059. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3060. impl equivalent::Equivalent<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3061. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::equivalent(&self, key: &aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> bool
  3062. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3063. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3064. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3065. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3066. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3067. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3068. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3069. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::equivalent(&self, key: &K) -> bool
  3070. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::From<T>
  3071. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::into(self) -> U
  3072. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::Into<T>
  3073. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = core::convert::Infallible
  3074. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3075. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::TryFrom<T>
  3076. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3077. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3078. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: 'static + ?core::marker::Sized
  3079. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::type_id(&self) -> core::any::TypeId
  3080. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: ?core::marker::Sized
  3081. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow(&self) -> &T
  3082. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: ?core::marker::Sized
  3083. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow_mut(&mut self) -> &mut T
  3084. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3085. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::from(t: T) -> T
  3086. pub mod aya::programs::cgroup_sockopt
  3087. pub use aya::programs::cgroup_sockopt::CgroupSockoptAttachType
  3088. pub struct aya::programs::cgroup_sockopt::CgroupSockopt
  3089. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3090. pub const aya::programs::cgroup_sockopt::CgroupSockopt::PROGRAM_TYPE: aya::programs::ProgramType
  3091. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLinkId, aya::programs::ProgramError>
  3092. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  3093. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3094. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3095. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3096. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::take_link(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLink, aya::programs::ProgramError>
  3097. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3098. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3099. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3100. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  3101. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3102. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3103. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3104. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3105. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3106. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3107. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3108. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt
  3109. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3110. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt
  3111. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self)
  3112. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  3113. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  3114. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  3115. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  3116. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  3117. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  3118. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockopt
  3119. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt
  3120. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt
  3121. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt
  3122. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  3123. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  3124. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From<T>
  3125. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U
  3126. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into<T>
  3127. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible
  3128. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3129. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom<T>
  3130. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = <U as core::convert::TryFrom<T>>::Error
  3131. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3132. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + ?core::marker::Sized
  3133. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId
  3134. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  3135. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T
  3136. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  3137. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T
  3138. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockopt
  3139. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T
  3140. pub struct aya::programs::cgroup_sockopt::CgroupSockoptLink(_)
  3141. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3142. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3143. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3144. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  3145. impl core::cmp::Eq for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3146. impl core::cmp::PartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3147. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::eq(&self, other: &Self) -> bool
  3148. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3149. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3150. impl core::hash::Hash for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3151. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3152. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3153. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::drop(&mut self)
  3154. impl equivalent::Equivalent<aya::programs::cgroup_sockopt::CgroupSockoptLink> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3155. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::equivalent(&self, key: &aya::programs::cgroup_sockopt::CgroupSockoptLink) -> bool
  3156. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3157. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3158. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3159. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3160. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3161. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3162. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sockopt::CgroupSockoptLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3163. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::equivalent(&self, key: &K) -> bool
  3164. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::From<T>
  3165. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::into(self) -> U
  3166. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::Into<T>
  3167. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = core::convert::Infallible
  3168. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3169. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::TryFrom<T>
  3170. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = <U as core::convert::TryFrom<T>>::Error
  3171. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3172. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: 'static + ?core::marker::Sized
  3173. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::type_id(&self) -> core::any::TypeId
  3174. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: ?core::marker::Sized
  3175. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow(&self) -> &T
  3176. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: ?core::marker::Sized
  3177. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow_mut(&mut self) -> &mut T
  3178. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3179. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::from(t: T) -> T
  3180. pub struct aya::programs::cgroup_sockopt::CgroupSockoptLinkId(_)
  3181. impl core::cmp::Eq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3182. impl core::cmp::PartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3183. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::eq(&self, other: &aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> bool
  3184. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3185. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3186. impl core::hash::Hash for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3187. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3188. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3189. impl equivalent::Equivalent<aya::programs::cgroup_sockopt::CgroupSockoptLink> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3190. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::equivalent(&self, key: &aya::programs::cgroup_sockopt::CgroupSockoptLink) -> bool
  3191. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3192. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3193. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3194. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3195. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3196. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3197. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3198. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::equivalent(&self, key: &K) -> bool
  3199. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::From<T>
  3200. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::into(self) -> U
  3201. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::Into<T>
  3202. pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = core::convert::Infallible
  3203. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3204. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::TryFrom<T>
  3205. pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3206. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3207. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: 'static + ?core::marker::Sized
  3208. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::type_id(&self) -> core::any::TypeId
  3209. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: ?core::marker::Sized
  3210. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow(&self) -> &T
  3211. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: ?core::marker::Sized
  3212. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow_mut(&mut self) -> &mut T
  3213. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3214. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::from(t: T) -> T
  3215. pub mod aya::programs::cgroup_sysctl
  3216. pub struct aya::programs::cgroup_sysctl::CgroupSysctl
  3217. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3218. pub const aya::programs::cgroup_sysctl::CgroupSysctl::PROGRAM_TYPE: aya::programs::ProgramType
  3219. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLinkId, aya::programs::ProgramError>
  3220. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3221. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3222. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3223. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::take_link(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLink, aya::programs::ProgramError>
  3224. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3225. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3226. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3227. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3228. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3229. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3230. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3231. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3232. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3233. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3234. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3235. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3236. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3237. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl
  3238. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3239. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl
  3240. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self)
  3241. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  3242. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  3243. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  3244. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  3245. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  3246. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  3247. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctl
  3248. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl
  3249. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl
  3250. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl
  3251. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  3252. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  3253. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From<T>
  3254. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U
  3255. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into<T>
  3256. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible
  3257. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3258. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom<T>
  3259. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = <U as core::convert::TryFrom<T>>::Error
  3260. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3261. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + ?core::marker::Sized
  3262. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId
  3263. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  3264. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T
  3265. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  3266. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T
  3267. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctl
  3268. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T
  3269. pub struct aya::programs::cgroup_sysctl::CgroupSysctlLink(_)
  3270. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3271. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3272. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3273. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  3274. impl core::cmp::Eq for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3275. impl core::cmp::PartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3276. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::eq(&self, other: &Self) -> bool
  3277. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3278. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3279. impl core::hash::Hash for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3280. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3281. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3282. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::drop(&mut self)
  3283. impl equivalent::Equivalent<aya::programs::cgroup_sysctl::CgroupSysctlLink> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3284. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::equivalent(&self, key: &aya::programs::cgroup_sysctl::CgroupSysctlLink) -> bool
  3285. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3286. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3287. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3288. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3289. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3290. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3291. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sysctl::CgroupSysctlLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3292. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::equivalent(&self, key: &K) -> bool
  3293. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::From<T>
  3294. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::into(self) -> U
  3295. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::Into<T>
  3296. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = core::convert::Infallible
  3297. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3298. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::TryFrom<T>
  3299. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = <U as core::convert::TryFrom<T>>::Error
  3300. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3301. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: 'static + ?core::marker::Sized
  3302. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::type_id(&self) -> core::any::TypeId
  3303. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: ?core::marker::Sized
  3304. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow(&self) -> &T
  3305. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: ?core::marker::Sized
  3306. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow_mut(&mut self) -> &mut T
  3307. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3308. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::from(t: T) -> T
  3309. pub struct aya::programs::cgroup_sysctl::CgroupSysctlLinkId(_)
  3310. impl core::cmp::Eq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3311. impl core::cmp::PartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3312. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::eq(&self, other: &aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> bool
  3313. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3314. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3315. impl core::hash::Hash for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3316. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3317. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3318. impl equivalent::Equivalent<aya::programs::cgroup_sysctl::CgroupSysctlLink> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3319. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::equivalent(&self, key: &aya::programs::cgroup_sysctl::CgroupSysctlLink) -> bool
  3320. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3321. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3322. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3323. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3324. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3325. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3326. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3327. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::equivalent(&self, key: &K) -> bool
  3328. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::From<T>
  3329. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::into(self) -> U
  3330. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::Into<T>
  3331. pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = core::convert::Infallible
  3332. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3333. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::TryFrom<T>
  3334. pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3335. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3336. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: 'static + ?core::marker::Sized
  3337. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::type_id(&self) -> core::any::TypeId
  3338. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: ?core::marker::Sized
  3339. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow(&self) -> &T
  3340. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: ?core::marker::Sized
  3341. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow_mut(&mut self) -> &mut T
  3342. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3343. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::from(t: T) -> T
  3344. pub mod aya::programs::extension
  3345. pub enum aya::programs::extension::ExtensionError
  3346. pub aya::programs::extension::ExtensionError::NoBTF
  3347. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  3348. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  3349. impl core::error::Error for aya::programs::extension::ExtensionError
  3350. impl core::fmt::Debug for aya::programs::extension::ExtensionError
  3351. pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3352. impl core::fmt::Display for aya::programs::extension::ExtensionError
  3353. pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3354. impl core::marker::Freeze for aya::programs::extension::ExtensionError
  3355. impl core::marker::Send for aya::programs::extension::ExtensionError
  3356. impl core::marker::Sync for aya::programs::extension::ExtensionError
  3357. impl core::marker::Unpin for aya::programs::extension::ExtensionError
  3358. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError
  3359. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError
  3360. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionError where U: core::convert::From<T>
  3361. pub fn aya::programs::extension::ExtensionError::into(self) -> U
  3362. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionError where U: core::convert::Into<T>
  3363. pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible
  3364. pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3365. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionError where U: core::convert::TryFrom<T>
  3366. pub type aya::programs::extension::ExtensionError::Error = <U as core::convert::TryFrom<T>>::Error
  3367. pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3368. impl<T> alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + ?core::marker::Sized
  3369. pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String
  3370. impl<T> core::any::Any for aya::programs::extension::ExtensionError where T: 'static + ?core::marker::Sized
  3371. pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId
  3372. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  3373. pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T
  3374. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  3375. pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T
  3376. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionError
  3377. pub fn aya::programs::extension::ExtensionError::from(t: T) -> T
  3378. pub struct aya::programs::extension::Extension
  3379. impl aya::programs::extension::Extension
  3380. pub const aya::programs::extension::Extension::PROGRAM_TYPE: aya::programs::ProgramType
  3381. pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  3382. pub fn aya::programs::extension::Extension::attach_to_program(&mut self, program: &aya::programs::ProgramFd, func_name: &str) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  3383. pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError>
  3384. impl aya::programs::extension::Extension
  3385. pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3386. pub fn aya::programs::extension::Extension::take_link(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<aya::programs::extension::ExtensionLink, aya::programs::ProgramError>
  3387. impl aya::programs::extension::Extension
  3388. pub fn aya::programs::extension::Extension::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3389. impl aya::programs::extension::Extension
  3390. pub fn aya::programs::extension::Extension::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3391. impl aya::programs::extension::Extension
  3392. pub fn aya::programs::extension::Extension::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3393. impl aya::programs::extension::Extension
  3394. pub fn aya::programs::extension::Extension::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3395. impl aya::programs::extension::Extension
  3396. pub fn aya::programs::extension::Extension::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3397. pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3398. impl aya::programs::extension::Extension
  3399. pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3400. impl core::fmt::Debug for aya::programs::extension::Extension
  3401. pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3402. impl core::ops::drop::Drop for aya::programs::extension::Extension
  3403. pub fn aya::programs::extension::Extension::drop(&mut self)
  3404. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  3405. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  3406. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  3407. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  3408. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  3409. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  3410. impl core::marker::Freeze for aya::programs::extension::Extension
  3411. impl core::marker::Send for aya::programs::extension::Extension
  3412. impl core::marker::Sync for aya::programs::extension::Extension
  3413. impl core::marker::Unpin for aya::programs::extension::Extension
  3414. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension
  3415. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension
  3416. impl<T, U> core::convert::Into<U> for aya::programs::extension::Extension where U: core::convert::From<T>
  3417. pub fn aya::programs::extension::Extension::into(self) -> U
  3418. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::Extension where U: core::convert::Into<T>
  3419. pub type aya::programs::extension::Extension::Error = core::convert::Infallible
  3420. pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3421. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::Extension where U: core::convert::TryFrom<T>
  3422. pub type aya::programs::extension::Extension::Error = <U as core::convert::TryFrom<T>>::Error
  3423. pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3424. impl<T> core::any::Any for aya::programs::extension::Extension where T: 'static + ?core::marker::Sized
  3425. pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId
  3426. impl<T> core::borrow::Borrow<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  3427. pub fn aya::programs::extension::Extension::borrow(&self) -> &T
  3428. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  3429. pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T
  3430. impl<T> core::convert::From<T> for aya::programs::extension::Extension
  3431. pub fn aya::programs::extension::Extension::from(t: T) -> T
  3432. pub struct aya::programs::extension::ExtensionLink(_)
  3433. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  3434. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  3435. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3436. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  3437. impl core::cmp::Eq for aya::programs::extension::ExtensionLink
  3438. impl core::cmp::PartialEq for aya::programs::extension::ExtensionLink
  3439. pub fn aya::programs::extension::ExtensionLink::eq(&self, other: &Self) -> bool
  3440. impl core::convert::From<aya::programs::extension::ExtensionLink> for aya::programs::links::FdLink
  3441. pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink
  3442. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::extension::ExtensionLink
  3443. pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink
  3444. impl core::fmt::Debug for aya::programs::extension::ExtensionLink
  3445. pub fn aya::programs::extension::ExtensionLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3446. impl core::hash::Hash for aya::programs::extension::ExtensionLink
  3447. pub fn aya::programs::extension::ExtensionLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3448. impl core::ops::drop::Drop for aya::programs::extension::ExtensionLink
  3449. pub fn aya::programs::extension::ExtensionLink::drop(&mut self)
  3450. impl equivalent::Equivalent<aya::programs::extension::ExtensionLink> for aya::programs::extension::ExtensionLinkId
  3451. pub fn aya::programs::extension::ExtensionLinkId::equivalent(&self, key: &aya::programs::extension::ExtensionLink) -> bool
  3452. impl core::marker::Freeze for aya::programs::extension::ExtensionLink
  3453. impl core::marker::Send for aya::programs::extension::ExtensionLink
  3454. impl core::marker::Sync for aya::programs::extension::ExtensionLink
  3455. impl core::marker::Unpin for aya::programs::extension::ExtensionLink
  3456. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLink
  3457. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLink
  3458. impl<Q, K> equivalent::Equivalent<K> for aya::programs::extension::ExtensionLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3459. pub fn aya::programs::extension::ExtensionLink::equivalent(&self, key: &K) -> bool
  3460. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionLink where U: core::convert::From<T>
  3461. pub fn aya::programs::extension::ExtensionLink::into(self) -> U
  3462. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionLink where U: core::convert::Into<T>
  3463. pub type aya::programs::extension::ExtensionLink::Error = core::convert::Infallible
  3464. pub fn aya::programs::extension::ExtensionLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3465. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionLink where U: core::convert::TryFrom<T>
  3466. pub type aya::programs::extension::ExtensionLink::Error = <U as core::convert::TryFrom<T>>::Error
  3467. pub fn aya::programs::extension::ExtensionLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3468. impl<T> core::any::Any for aya::programs::extension::ExtensionLink where T: 'static + ?core::marker::Sized
  3469. pub fn aya::programs::extension::ExtensionLink::type_id(&self) -> core::any::TypeId
  3470. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionLink where T: ?core::marker::Sized
  3471. pub fn aya::programs::extension::ExtensionLink::borrow(&self) -> &T
  3472. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionLink where T: ?core::marker::Sized
  3473. pub fn aya::programs::extension::ExtensionLink::borrow_mut(&mut self) -> &mut T
  3474. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionLink
  3475. pub fn aya::programs::extension::ExtensionLink::from(t: T) -> T
  3476. pub struct aya::programs::extension::ExtensionLinkId(_)
  3477. impl core::cmp::Eq for aya::programs::extension::ExtensionLinkId
  3478. impl core::cmp::PartialEq for aya::programs::extension::ExtensionLinkId
  3479. pub fn aya::programs::extension::ExtensionLinkId::eq(&self, other: &aya::programs::extension::ExtensionLinkId) -> bool
  3480. impl core::fmt::Debug for aya::programs::extension::ExtensionLinkId
  3481. pub fn aya::programs::extension::ExtensionLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3482. impl core::hash::Hash for aya::programs::extension::ExtensionLinkId
  3483. pub fn aya::programs::extension::ExtensionLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3484. impl core::marker::StructuralPartialEq for aya::programs::extension::ExtensionLinkId
  3485. impl equivalent::Equivalent<aya::programs::extension::ExtensionLink> for aya::programs::extension::ExtensionLinkId
  3486. pub fn aya::programs::extension::ExtensionLinkId::equivalent(&self, key: &aya::programs::extension::ExtensionLink) -> bool
  3487. impl core::marker::Freeze for aya::programs::extension::ExtensionLinkId
  3488. impl core::marker::Send for aya::programs::extension::ExtensionLinkId
  3489. impl core::marker::Sync for aya::programs::extension::ExtensionLinkId
  3490. impl core::marker::Unpin for aya::programs::extension::ExtensionLinkId
  3491. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLinkId
  3492. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLinkId
  3493. impl<Q, K> equivalent::Equivalent<K> for aya::programs::extension::ExtensionLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3494. pub fn aya::programs::extension::ExtensionLinkId::equivalent(&self, key: &K) -> bool
  3495. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::From<T>
  3496. pub fn aya::programs::extension::ExtensionLinkId::into(self) -> U
  3497. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::Into<T>
  3498. pub type aya::programs::extension::ExtensionLinkId::Error = core::convert::Infallible
  3499. pub fn aya::programs::extension::ExtensionLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3500. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::TryFrom<T>
  3501. pub type aya::programs::extension::ExtensionLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3502. pub fn aya::programs::extension::ExtensionLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3503. impl<T> core::any::Any for aya::programs::extension::ExtensionLinkId where T: 'static + ?core::marker::Sized
  3504. pub fn aya::programs::extension::ExtensionLinkId::type_id(&self) -> core::any::TypeId
  3505. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionLinkId where T: ?core::marker::Sized
  3506. pub fn aya::programs::extension::ExtensionLinkId::borrow(&self) -> &T
  3507. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionLinkId where T: ?core::marker::Sized
  3508. pub fn aya::programs::extension::ExtensionLinkId::borrow_mut(&mut self) -> &mut T
  3509. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionLinkId
  3510. pub fn aya::programs::extension::ExtensionLinkId::from(t: T) -> T
  3511. pub mod aya::programs::fentry
  3512. pub struct aya::programs::fentry::FEntry
  3513. impl aya::programs::fentry::FEntry
  3514. pub const aya::programs::fentry::FEntry::PROGRAM_TYPE: aya::programs::ProgramType
  3515. pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result<aya::programs::fentry::FEntryLinkId, aya::programs::ProgramError>
  3516. pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3517. impl aya::programs::fentry::FEntry
  3518. pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3519. pub fn aya::programs::fentry::FEntry::take_link(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<aya::programs::fentry::FEntryLink, aya::programs::ProgramError>
  3520. impl aya::programs::fentry::FEntry
  3521. pub fn aya::programs::fentry::FEntry::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3522. impl aya::programs::fentry::FEntry
  3523. pub fn aya::programs::fentry::FEntry::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3524. impl aya::programs::fentry::FEntry
  3525. pub unsafe fn aya::programs::fentry::FEntry::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3526. impl aya::programs::fentry::FEntry
  3527. pub fn aya::programs::fentry::FEntry::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3528. impl aya::programs::fentry::FEntry
  3529. pub fn aya::programs::fentry::FEntry::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3530. pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3531. impl aya::programs::fentry::FEntry
  3532. pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3533. impl core::fmt::Debug for aya::programs::fentry::FEntry
  3534. pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3535. impl core::ops::drop::Drop for aya::programs::fentry::FEntry
  3536. pub fn aya::programs::fentry::FEntry::drop(&mut self)
  3537. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  3538. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  3539. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  3540. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  3541. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  3542. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  3543. impl core::marker::Freeze for aya::programs::fentry::FEntry
  3544. impl core::marker::Send for aya::programs::fentry::FEntry
  3545. impl core::marker::Sync for aya::programs::fentry::FEntry
  3546. impl core::marker::Unpin for aya::programs::fentry::FEntry
  3547. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry
  3548. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry
  3549. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntry where U: core::convert::From<T>
  3550. pub fn aya::programs::fentry::FEntry::into(self) -> U
  3551. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntry where U: core::convert::Into<T>
  3552. pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible
  3553. pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3554. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntry where U: core::convert::TryFrom<T>
  3555. pub type aya::programs::fentry::FEntry::Error = <U as core::convert::TryFrom<T>>::Error
  3556. pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3557. impl<T> core::any::Any for aya::programs::fentry::FEntry where T: 'static + ?core::marker::Sized
  3558. pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId
  3559. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  3560. pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T
  3561. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  3562. pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T
  3563. impl<T> core::convert::From<T> for aya::programs::fentry::FEntry
  3564. pub fn aya::programs::fentry::FEntry::from(t: T) -> T
  3565. pub struct aya::programs::fentry::FEntryLink(_)
  3566. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  3567. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  3568. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3569. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  3570. impl core::cmp::Eq for aya::programs::fentry::FEntryLink
  3571. impl core::cmp::PartialEq for aya::programs::fentry::FEntryLink
  3572. pub fn aya::programs::fentry::FEntryLink::eq(&self, other: &Self) -> bool
  3573. impl core::convert::From<aya::programs::fentry::FEntryLink> for aya::programs::links::FdLink
  3574. pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink
  3575. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fentry::FEntryLink
  3576. pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink
  3577. impl core::fmt::Debug for aya::programs::fentry::FEntryLink
  3578. pub fn aya::programs::fentry::FEntryLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3579. impl core::hash::Hash for aya::programs::fentry::FEntryLink
  3580. pub fn aya::programs::fentry::FEntryLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3581. impl core::ops::drop::Drop for aya::programs::fentry::FEntryLink
  3582. pub fn aya::programs::fentry::FEntryLink::drop(&mut self)
  3583. impl equivalent::Equivalent<aya::programs::fentry::FEntryLink> for aya::programs::fentry::FEntryLinkId
  3584. pub fn aya::programs::fentry::FEntryLinkId::equivalent(&self, key: &aya::programs::fentry::FEntryLink) -> bool
  3585. impl core::marker::Freeze for aya::programs::fentry::FEntryLink
  3586. impl core::marker::Send for aya::programs::fentry::FEntryLink
  3587. impl core::marker::Sync for aya::programs::fentry::FEntryLink
  3588. impl core::marker::Unpin for aya::programs::fentry::FEntryLink
  3589. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLink
  3590. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLink
  3591. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fentry::FEntryLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3592. pub fn aya::programs::fentry::FEntryLink::equivalent(&self, key: &K) -> bool
  3593. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntryLink where U: core::convert::From<T>
  3594. pub fn aya::programs::fentry::FEntryLink::into(self) -> U
  3595. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntryLink where U: core::convert::Into<T>
  3596. pub type aya::programs::fentry::FEntryLink::Error = core::convert::Infallible
  3597. pub fn aya::programs::fentry::FEntryLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3598. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntryLink where U: core::convert::TryFrom<T>
  3599. pub type aya::programs::fentry::FEntryLink::Error = <U as core::convert::TryFrom<T>>::Error
  3600. pub fn aya::programs::fentry::FEntryLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3601. impl<T> core::any::Any for aya::programs::fentry::FEntryLink where T: 'static + ?core::marker::Sized
  3602. pub fn aya::programs::fentry::FEntryLink::type_id(&self) -> core::any::TypeId
  3603. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntryLink where T: ?core::marker::Sized
  3604. pub fn aya::programs::fentry::FEntryLink::borrow(&self) -> &T
  3605. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntryLink where T: ?core::marker::Sized
  3606. pub fn aya::programs::fentry::FEntryLink::borrow_mut(&mut self) -> &mut T
  3607. impl<T> core::convert::From<T> for aya::programs::fentry::FEntryLink
  3608. pub fn aya::programs::fentry::FEntryLink::from(t: T) -> T
  3609. pub struct aya::programs::fentry::FEntryLinkId(_)
  3610. impl core::cmp::Eq for aya::programs::fentry::FEntryLinkId
  3611. impl core::cmp::PartialEq for aya::programs::fentry::FEntryLinkId
  3612. pub fn aya::programs::fentry::FEntryLinkId::eq(&self, other: &aya::programs::fentry::FEntryLinkId) -> bool
  3613. impl core::fmt::Debug for aya::programs::fentry::FEntryLinkId
  3614. pub fn aya::programs::fentry::FEntryLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3615. impl core::hash::Hash for aya::programs::fentry::FEntryLinkId
  3616. pub fn aya::programs::fentry::FEntryLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3617. impl core::marker::StructuralPartialEq for aya::programs::fentry::FEntryLinkId
  3618. impl equivalent::Equivalent<aya::programs::fentry::FEntryLink> for aya::programs::fentry::FEntryLinkId
  3619. pub fn aya::programs::fentry::FEntryLinkId::equivalent(&self, key: &aya::programs::fentry::FEntryLink) -> bool
  3620. impl core::marker::Freeze for aya::programs::fentry::FEntryLinkId
  3621. impl core::marker::Send for aya::programs::fentry::FEntryLinkId
  3622. impl core::marker::Sync for aya::programs::fentry::FEntryLinkId
  3623. impl core::marker::Unpin for aya::programs::fentry::FEntryLinkId
  3624. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLinkId
  3625. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLinkId
  3626. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fentry::FEntryLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3627. pub fn aya::programs::fentry::FEntryLinkId::equivalent(&self, key: &K) -> bool
  3628. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::From<T>
  3629. pub fn aya::programs::fentry::FEntryLinkId::into(self) -> U
  3630. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::Into<T>
  3631. pub type aya::programs::fentry::FEntryLinkId::Error = core::convert::Infallible
  3632. pub fn aya::programs::fentry::FEntryLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3633. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::TryFrom<T>
  3634. pub type aya::programs::fentry::FEntryLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3635. pub fn aya::programs::fentry::FEntryLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3636. impl<T> core::any::Any for aya::programs::fentry::FEntryLinkId where T: 'static + ?core::marker::Sized
  3637. pub fn aya::programs::fentry::FEntryLinkId::type_id(&self) -> core::any::TypeId
  3638. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntryLinkId where T: ?core::marker::Sized
  3639. pub fn aya::programs::fentry::FEntryLinkId::borrow(&self) -> &T
  3640. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntryLinkId where T: ?core::marker::Sized
  3641. pub fn aya::programs::fentry::FEntryLinkId::borrow_mut(&mut self) -> &mut T
  3642. impl<T> core::convert::From<T> for aya::programs::fentry::FEntryLinkId
  3643. pub fn aya::programs::fentry::FEntryLinkId::from(t: T) -> T
  3644. pub mod aya::programs::fexit
  3645. pub struct aya::programs::fexit::FExit
  3646. impl aya::programs::fexit::FExit
  3647. pub const aya::programs::fexit::FExit::PROGRAM_TYPE: aya::programs::ProgramType
  3648. pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result<aya::programs::fexit::FExitLinkId, aya::programs::ProgramError>
  3649. pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3650. impl aya::programs::fexit::FExit
  3651. pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3652. pub fn aya::programs::fexit::FExit::take_link(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<aya::programs::fexit::FExitLink, aya::programs::ProgramError>
  3653. impl aya::programs::fexit::FExit
  3654. pub fn aya::programs::fexit::FExit::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3655. impl aya::programs::fexit::FExit
  3656. pub fn aya::programs::fexit::FExit::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3657. impl aya::programs::fexit::FExit
  3658. pub unsafe fn aya::programs::fexit::FExit::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3659. impl aya::programs::fexit::FExit
  3660. pub fn aya::programs::fexit::FExit::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3661. impl aya::programs::fexit::FExit
  3662. pub fn aya::programs::fexit::FExit::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3663. pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3664. impl aya::programs::fexit::FExit
  3665. pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3666. impl core::fmt::Debug for aya::programs::fexit::FExit
  3667. pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3668. impl core::ops::drop::Drop for aya::programs::fexit::FExit
  3669. pub fn aya::programs::fexit::FExit::drop(&mut self)
  3670. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  3671. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  3672. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  3673. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  3674. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  3675. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  3676. impl core::marker::Freeze for aya::programs::fexit::FExit
  3677. impl core::marker::Send for aya::programs::fexit::FExit
  3678. impl core::marker::Sync for aya::programs::fexit::FExit
  3679. impl core::marker::Unpin for aya::programs::fexit::FExit
  3680. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit
  3681. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit
  3682. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExit where U: core::convert::From<T>
  3683. pub fn aya::programs::fexit::FExit::into(self) -> U
  3684. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExit where U: core::convert::Into<T>
  3685. pub type aya::programs::fexit::FExit::Error = core::convert::Infallible
  3686. pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3687. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExit where U: core::convert::TryFrom<T>
  3688. pub type aya::programs::fexit::FExit::Error = <U as core::convert::TryFrom<T>>::Error
  3689. pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3690. impl<T> core::any::Any for aya::programs::fexit::FExit where T: 'static + ?core::marker::Sized
  3691. pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId
  3692. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  3693. pub fn aya::programs::fexit::FExit::borrow(&self) -> &T
  3694. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  3695. pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T
  3696. impl<T> core::convert::From<T> for aya::programs::fexit::FExit
  3697. pub fn aya::programs::fexit::FExit::from(t: T) -> T
  3698. pub struct aya::programs::fexit::FExitLink(_)
  3699. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  3700. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  3701. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3702. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  3703. impl core::cmp::Eq for aya::programs::fexit::FExitLink
  3704. impl core::cmp::PartialEq for aya::programs::fexit::FExitLink
  3705. pub fn aya::programs::fexit::FExitLink::eq(&self, other: &Self) -> bool
  3706. impl core::convert::From<aya::programs::fexit::FExitLink> for aya::programs::links::FdLink
  3707. pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink
  3708. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fexit::FExitLink
  3709. pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink
  3710. impl core::fmt::Debug for aya::programs::fexit::FExitLink
  3711. pub fn aya::programs::fexit::FExitLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3712. impl core::hash::Hash for aya::programs::fexit::FExitLink
  3713. pub fn aya::programs::fexit::FExitLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3714. impl core::ops::drop::Drop for aya::programs::fexit::FExitLink
  3715. pub fn aya::programs::fexit::FExitLink::drop(&mut self)
  3716. impl equivalent::Equivalent<aya::programs::fexit::FExitLink> for aya::programs::fexit::FExitLinkId
  3717. pub fn aya::programs::fexit::FExitLinkId::equivalent(&self, key: &aya::programs::fexit::FExitLink) -> bool
  3718. impl core::marker::Freeze for aya::programs::fexit::FExitLink
  3719. impl core::marker::Send for aya::programs::fexit::FExitLink
  3720. impl core::marker::Sync for aya::programs::fexit::FExitLink
  3721. impl core::marker::Unpin for aya::programs::fexit::FExitLink
  3722. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLink
  3723. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLink
  3724. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fexit::FExitLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3725. pub fn aya::programs::fexit::FExitLink::equivalent(&self, key: &K) -> bool
  3726. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExitLink where U: core::convert::From<T>
  3727. pub fn aya::programs::fexit::FExitLink::into(self) -> U
  3728. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExitLink where U: core::convert::Into<T>
  3729. pub type aya::programs::fexit::FExitLink::Error = core::convert::Infallible
  3730. pub fn aya::programs::fexit::FExitLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3731. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExitLink where U: core::convert::TryFrom<T>
  3732. pub type aya::programs::fexit::FExitLink::Error = <U as core::convert::TryFrom<T>>::Error
  3733. pub fn aya::programs::fexit::FExitLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3734. impl<T> core::any::Any for aya::programs::fexit::FExitLink where T: 'static + ?core::marker::Sized
  3735. pub fn aya::programs::fexit::FExitLink::type_id(&self) -> core::any::TypeId
  3736. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExitLink where T: ?core::marker::Sized
  3737. pub fn aya::programs::fexit::FExitLink::borrow(&self) -> &T
  3738. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExitLink where T: ?core::marker::Sized
  3739. pub fn aya::programs::fexit::FExitLink::borrow_mut(&mut self) -> &mut T
  3740. impl<T> core::convert::From<T> for aya::programs::fexit::FExitLink
  3741. pub fn aya::programs::fexit::FExitLink::from(t: T) -> T
  3742. pub struct aya::programs::fexit::FExitLinkId(_)
  3743. impl core::cmp::Eq for aya::programs::fexit::FExitLinkId
  3744. impl core::cmp::PartialEq for aya::programs::fexit::FExitLinkId
  3745. pub fn aya::programs::fexit::FExitLinkId::eq(&self, other: &aya::programs::fexit::FExitLinkId) -> bool
  3746. impl core::fmt::Debug for aya::programs::fexit::FExitLinkId
  3747. pub fn aya::programs::fexit::FExitLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3748. impl core::hash::Hash for aya::programs::fexit::FExitLinkId
  3749. pub fn aya::programs::fexit::FExitLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3750. impl core::marker::StructuralPartialEq for aya::programs::fexit::FExitLinkId
  3751. impl equivalent::Equivalent<aya::programs::fexit::FExitLink> for aya::programs::fexit::FExitLinkId
  3752. pub fn aya::programs::fexit::FExitLinkId::equivalent(&self, key: &aya::programs::fexit::FExitLink) -> bool
  3753. impl core::marker::Freeze for aya::programs::fexit::FExitLinkId
  3754. impl core::marker::Send for aya::programs::fexit::FExitLinkId
  3755. impl core::marker::Sync for aya::programs::fexit::FExitLinkId
  3756. impl core::marker::Unpin for aya::programs::fexit::FExitLinkId
  3757. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLinkId
  3758. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLinkId
  3759. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fexit::FExitLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3760. pub fn aya::programs::fexit::FExitLinkId::equivalent(&self, key: &K) -> bool
  3761. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExitLinkId where U: core::convert::From<T>
  3762. pub fn aya::programs::fexit::FExitLinkId::into(self) -> U
  3763. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExitLinkId where U: core::convert::Into<T>
  3764. pub type aya::programs::fexit::FExitLinkId::Error = core::convert::Infallible
  3765. pub fn aya::programs::fexit::FExitLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3766. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExitLinkId where U: core::convert::TryFrom<T>
  3767. pub type aya::programs::fexit::FExitLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3768. pub fn aya::programs::fexit::FExitLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3769. impl<T> core::any::Any for aya::programs::fexit::FExitLinkId where T: 'static + ?core::marker::Sized
  3770. pub fn aya::programs::fexit::FExitLinkId::type_id(&self) -> core::any::TypeId
  3771. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExitLinkId where T: ?core::marker::Sized
  3772. pub fn aya::programs::fexit::FExitLinkId::borrow(&self) -> &T
  3773. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExitLinkId where T: ?core::marker::Sized
  3774. pub fn aya::programs::fexit::FExitLinkId::borrow_mut(&mut self) -> &mut T
  3775. impl<T> core::convert::From<T> for aya::programs::fexit::FExitLinkId
  3776. pub fn aya::programs::fexit::FExitLinkId::from(t: T) -> T
  3777. pub mod aya::programs::flow_dissector
  3778. pub struct aya::programs::flow_dissector::FlowDissector
  3779. impl aya::programs::flow_dissector::FlowDissector
  3780. pub const aya::programs::flow_dissector::FlowDissector::PROGRAM_TYPE: aya::programs::ProgramType
  3781. pub fn aya::programs::flow_dissector::FlowDissector::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLinkId, aya::programs::ProgramError>
  3782. pub fn aya::programs::flow_dissector::FlowDissector::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3783. impl aya::programs::flow_dissector::FlowDissector
  3784. pub fn aya::programs::flow_dissector::FlowDissector::detach(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3785. pub fn aya::programs::flow_dissector::FlowDissector::take_link(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLink, aya::programs::ProgramError>
  3786. impl aya::programs::flow_dissector::FlowDissector
  3787. pub fn aya::programs::flow_dissector::FlowDissector::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3788. impl aya::programs::flow_dissector::FlowDissector
  3789. pub fn aya::programs::flow_dissector::FlowDissector::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3790. impl aya::programs::flow_dissector::FlowDissector
  3791. pub fn aya::programs::flow_dissector::FlowDissector::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3792. impl aya::programs::flow_dissector::FlowDissector
  3793. pub fn aya::programs::flow_dissector::FlowDissector::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3794. pub fn aya::programs::flow_dissector::FlowDissector::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3795. impl aya::programs::flow_dissector::FlowDissector
  3796. pub fn aya::programs::flow_dissector::FlowDissector::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3797. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissector
  3798. pub fn aya::programs::flow_dissector::FlowDissector::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3799. impl core::ops::drop::Drop for aya::programs::flow_dissector::FlowDissector
  3800. pub fn aya::programs::flow_dissector::FlowDissector::drop(&mut self)
  3801. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::flow_dissector::FlowDissector
  3802. pub type &'a aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  3803. pub fn &'a aya::programs::flow_dissector::FlowDissector::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  3804. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::flow_dissector::FlowDissector
  3805. pub type &'a mut aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  3806. pub fn &'a mut aya::programs::flow_dissector::FlowDissector::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  3807. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissector
  3808. impl core::marker::Send for aya::programs::flow_dissector::FlowDissector
  3809. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissector
  3810. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissector
  3811. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissector
  3812. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissector
  3813. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::From<T>
  3814. pub fn aya::programs::flow_dissector::FlowDissector::into(self) -> U
  3815. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::Into<T>
  3816. pub type aya::programs::flow_dissector::FlowDissector::Error = core::convert::Infallible
  3817. pub fn aya::programs::flow_dissector::FlowDissector::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3818. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::TryFrom<T>
  3819. pub type aya::programs::flow_dissector::FlowDissector::Error = <U as core::convert::TryFrom<T>>::Error
  3820. pub fn aya::programs::flow_dissector::FlowDissector::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3821. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissector where T: 'static + ?core::marker::Sized
  3822. pub fn aya::programs::flow_dissector::FlowDissector::type_id(&self) -> core::any::TypeId
  3823. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  3824. pub fn aya::programs::flow_dissector::FlowDissector::borrow(&self) -> &T
  3825. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  3826. pub fn aya::programs::flow_dissector::FlowDissector::borrow_mut(&mut self) -> &mut T
  3827. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissector
  3828. pub fn aya::programs::flow_dissector::FlowDissector::from(t: T) -> T
  3829. pub struct aya::programs::flow_dissector::FlowDissectorLink(_)
  3830. impl aya::programs::links::Link for aya::programs::flow_dissector::FlowDissectorLink
  3831. pub type aya::programs::flow_dissector::FlowDissectorLink::Id = aya::programs::flow_dissector::FlowDissectorLinkId
  3832. pub fn aya::programs::flow_dissector::FlowDissectorLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3833. pub fn aya::programs::flow_dissector::FlowDissectorLink::id(&self) -> Self::Id
  3834. impl core::cmp::Eq for aya::programs::flow_dissector::FlowDissectorLink
  3835. impl core::cmp::PartialEq for aya::programs::flow_dissector::FlowDissectorLink
  3836. pub fn aya::programs::flow_dissector::FlowDissectorLink::eq(&self, other: &Self) -> bool
  3837. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissectorLink
  3838. pub fn aya::programs::flow_dissector::FlowDissectorLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3839. impl core::hash::Hash for aya::programs::flow_dissector::FlowDissectorLink
  3840. pub fn aya::programs::flow_dissector::FlowDissectorLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3841. impl core::ops::drop::Drop for aya::programs::flow_dissector::FlowDissectorLink
  3842. pub fn aya::programs::flow_dissector::FlowDissectorLink::drop(&mut self)
  3843. impl equivalent::Equivalent<aya::programs::flow_dissector::FlowDissectorLink> for aya::programs::flow_dissector::FlowDissectorLinkId
  3844. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::equivalent(&self, key: &aya::programs::flow_dissector::FlowDissectorLink) -> bool
  3845. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissectorLink
  3846. impl core::marker::Send for aya::programs::flow_dissector::FlowDissectorLink
  3847. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissectorLink
  3848. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissectorLink
  3849. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissectorLink
  3850. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissectorLink
  3851. impl<Q, K> equivalent::Equivalent<K> for aya::programs::flow_dissector::FlowDissectorLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3852. pub fn aya::programs::flow_dissector::FlowDissectorLink::equivalent(&self, key: &K) -> bool
  3853. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissectorLink where U: core::convert::From<T>
  3854. pub fn aya::programs::flow_dissector::FlowDissectorLink::into(self) -> U
  3855. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissectorLink where U: core::convert::Into<T>
  3856. pub type aya::programs::flow_dissector::FlowDissectorLink::Error = core::convert::Infallible
  3857. pub fn aya::programs::flow_dissector::FlowDissectorLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3858. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissectorLink where U: core::convert::TryFrom<T>
  3859. pub type aya::programs::flow_dissector::FlowDissectorLink::Error = <U as core::convert::TryFrom<T>>::Error
  3860. pub fn aya::programs::flow_dissector::FlowDissectorLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3861. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissectorLink where T: 'static + ?core::marker::Sized
  3862. pub fn aya::programs::flow_dissector::FlowDissectorLink::type_id(&self) -> core::any::TypeId
  3863. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissectorLink where T: ?core::marker::Sized
  3864. pub fn aya::programs::flow_dissector::FlowDissectorLink::borrow(&self) -> &T
  3865. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissectorLink where T: ?core::marker::Sized
  3866. pub fn aya::programs::flow_dissector::FlowDissectorLink::borrow_mut(&mut self) -> &mut T
  3867. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissectorLink
  3868. pub fn aya::programs::flow_dissector::FlowDissectorLink::from(t: T) -> T
  3869. pub struct aya::programs::flow_dissector::FlowDissectorLinkId(_)
  3870. impl core::cmp::Eq for aya::programs::flow_dissector::FlowDissectorLinkId
  3871. impl core::cmp::PartialEq for aya::programs::flow_dissector::FlowDissectorLinkId
  3872. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::eq(&self, other: &aya::programs::flow_dissector::FlowDissectorLinkId) -> bool
  3873. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissectorLinkId
  3874. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3875. impl core::hash::Hash for aya::programs::flow_dissector::FlowDissectorLinkId
  3876. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3877. impl core::marker::StructuralPartialEq for aya::programs::flow_dissector::FlowDissectorLinkId
  3878. impl equivalent::Equivalent<aya::programs::flow_dissector::FlowDissectorLink> for aya::programs::flow_dissector::FlowDissectorLinkId
  3879. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::equivalent(&self, key: &aya::programs::flow_dissector::FlowDissectorLink) -> bool
  3880. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissectorLinkId
  3881. impl core::marker::Send for aya::programs::flow_dissector::FlowDissectorLinkId
  3882. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissectorLinkId
  3883. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissectorLinkId
  3884. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissectorLinkId
  3885. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissectorLinkId
  3886. impl<Q, K> equivalent::Equivalent<K> for aya::programs::flow_dissector::FlowDissectorLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3887. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::equivalent(&self, key: &K) -> bool
  3888. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissectorLinkId where U: core::convert::From<T>
  3889. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::into(self) -> U
  3890. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissectorLinkId where U: core::convert::Into<T>
  3891. pub type aya::programs::flow_dissector::FlowDissectorLinkId::Error = core::convert::Infallible
  3892. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3893. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissectorLinkId where U: core::convert::TryFrom<T>
  3894. pub type aya::programs::flow_dissector::FlowDissectorLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3895. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3896. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissectorLinkId where T: 'static + ?core::marker::Sized
  3897. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::type_id(&self) -> core::any::TypeId
  3898. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissectorLinkId where T: ?core::marker::Sized
  3899. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::borrow(&self) -> &T
  3900. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissectorLinkId where T: ?core::marker::Sized
  3901. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::borrow_mut(&mut self) -> &mut T
  3902. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissectorLinkId
  3903. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::from(t: T) -> T
  3904. pub mod aya::programs::iter
  3905. pub struct aya::programs::iter::Iter
  3906. impl aya::programs::iter::Iter
  3907. pub const aya::programs::iter::Iter::PROGRAM_TYPE: aya::programs::ProgramType
  3908. pub fn aya::programs::iter::Iter::attach(&mut self) -> core::result::Result<aya::programs::iter::IterLinkId, aya::programs::ProgramError>
  3909. pub fn aya::programs::iter::Iter::load(&mut self, iter_type: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3910. impl aya::programs::iter::Iter
  3911. pub fn aya::programs::iter::Iter::detach(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3912. pub fn aya::programs::iter::Iter::take_link(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<aya::programs::iter::IterLink, aya::programs::ProgramError>
  3913. impl aya::programs::iter::Iter
  3914. pub fn aya::programs::iter::Iter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3915. impl aya::programs::iter::Iter
  3916. pub fn aya::programs::iter::Iter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3917. impl aya::programs::iter::Iter
  3918. pub fn aya::programs::iter::Iter::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3919. impl aya::programs::iter::Iter
  3920. pub fn aya::programs::iter::Iter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3921. impl aya::programs::iter::Iter
  3922. pub fn aya::programs::iter::Iter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3923. pub fn aya::programs::iter::Iter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3924. impl aya::programs::iter::Iter
  3925. pub fn aya::programs::iter::Iter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3926. impl core::fmt::Debug for aya::programs::iter::Iter
  3927. pub fn aya::programs::iter::Iter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3928. impl core::ops::drop::Drop for aya::programs::iter::Iter
  3929. pub fn aya::programs::iter::Iter::drop(&mut self)
  3930. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::iter::Iter
  3931. pub type &'a aya::programs::iter::Iter::Error = aya::programs::ProgramError
  3932. pub fn &'a aya::programs::iter::Iter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::iter::Iter, aya::programs::ProgramError>
  3933. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::iter::Iter
  3934. pub type &'a mut aya::programs::iter::Iter::Error = aya::programs::ProgramError
  3935. pub fn &'a mut aya::programs::iter::Iter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::iter::Iter, aya::programs::ProgramError>
  3936. impl core::marker::Freeze for aya::programs::iter::Iter
  3937. impl core::marker::Send for aya::programs::iter::Iter
  3938. impl core::marker::Sync for aya::programs::iter::Iter
  3939. impl core::marker::Unpin for aya::programs::iter::Iter
  3940. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::Iter
  3941. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::Iter
  3942. impl<T, U> core::convert::Into<U> for aya::programs::iter::Iter where U: core::convert::From<T>
  3943. pub fn aya::programs::iter::Iter::into(self) -> U
  3944. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::Iter where U: core::convert::Into<T>
  3945. pub type aya::programs::iter::Iter::Error = core::convert::Infallible
  3946. pub fn aya::programs::iter::Iter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3947. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::Iter where U: core::convert::TryFrom<T>
  3948. pub type aya::programs::iter::Iter::Error = <U as core::convert::TryFrom<T>>::Error
  3949. pub fn aya::programs::iter::Iter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3950. impl<T> core::any::Any for aya::programs::iter::Iter where T: 'static + ?core::marker::Sized
  3951. pub fn aya::programs::iter::Iter::type_id(&self) -> core::any::TypeId
  3952. impl<T> core::borrow::Borrow<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  3953. pub fn aya::programs::iter::Iter::borrow(&self) -> &T
  3954. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  3955. pub fn aya::programs::iter::Iter::borrow_mut(&mut self) -> &mut T
  3956. impl<T> core::convert::From<T> for aya::programs::iter::Iter
  3957. pub fn aya::programs::iter::Iter::from(t: T) -> T
  3958. pub struct aya::programs::iter::IterFd
  3959. impl core::fmt::Debug for aya::programs::iter::IterFd
  3960. pub fn aya::programs::iter::IterFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3961. impl std::os::fd::owned::AsFd for aya::programs::iter::IterFd
  3962. pub fn aya::programs::iter::IterFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  3963. impl core::marker::Freeze for aya::programs::iter::IterFd
  3964. impl core::marker::Send for aya::programs::iter::IterFd
  3965. impl core::marker::Sync for aya::programs::iter::IterFd
  3966. impl core::marker::Unpin for aya::programs::iter::IterFd
  3967. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::IterFd
  3968. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::IterFd
  3969. impl<T, U> core::convert::Into<U> for aya::programs::iter::IterFd where U: core::convert::From<T>
  3970. pub fn aya::programs::iter::IterFd::into(self) -> U
  3971. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::IterFd where U: core::convert::Into<T>
  3972. pub type aya::programs::iter::IterFd::Error = core::convert::Infallible
  3973. pub fn aya::programs::iter::IterFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3974. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::IterFd where U: core::convert::TryFrom<T>
  3975. pub type aya::programs::iter::IterFd::Error = <U as core::convert::TryFrom<T>>::Error
  3976. pub fn aya::programs::iter::IterFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3977. impl<T> core::any::Any for aya::programs::iter::IterFd where T: 'static + ?core::marker::Sized
  3978. pub fn aya::programs::iter::IterFd::type_id(&self) -> core::any::TypeId
  3979. impl<T> core::borrow::Borrow<T> for aya::programs::iter::IterFd where T: ?core::marker::Sized
  3980. pub fn aya::programs::iter::IterFd::borrow(&self) -> &T
  3981. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::IterFd where T: ?core::marker::Sized
  3982. pub fn aya::programs::iter::IterFd::borrow_mut(&mut self) -> &mut T
  3983. impl<T> core::convert::From<T> for aya::programs::iter::IterFd
  3984. pub fn aya::programs::iter::IterFd::from(t: T) -> T
  3985. pub struct aya::programs::iter::IterLink(_)
  3986. impl aya::programs::iter::IterLink
  3987. pub fn aya::programs::iter::IterLink::into_file(self) -> core::result::Result<std::fs::File, aya::programs::links::LinkError>
  3988. impl aya::programs::links::Link for aya::programs::iter::IterLink
  3989. pub type aya::programs::iter::IterLink::Id = aya::programs::iter::IterLinkId
  3990. pub fn aya::programs::iter::IterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3991. pub fn aya::programs::iter::IterLink::id(&self) -> Self::Id
  3992. impl core::cmp::Eq for aya::programs::iter::IterLink
  3993. impl core::cmp::PartialEq for aya::programs::iter::IterLink
  3994. pub fn aya::programs::iter::IterLink::eq(&self, other: &Self) -> bool
  3995. impl core::convert::TryFrom<aya::programs::iter::IterLink> for aya::programs::links::FdLink
  3996. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3997. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::iter::IterLink) -> core::result::Result<Self, Self::Error>
  3998. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::iter::IterLink
  3999. pub type aya::programs::iter::IterLink::Error = aya::programs::links::LinkError
  4000. pub fn aya::programs::iter::IterLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4001. impl core::fmt::Debug for aya::programs::iter::IterLink
  4002. pub fn aya::programs::iter::IterLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4003. impl core::hash::Hash for aya::programs::iter::IterLink
  4004. pub fn aya::programs::iter::IterLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4005. impl core::ops::drop::Drop for aya::programs::iter::IterLink
  4006. pub fn aya::programs::iter::IterLink::drop(&mut self)
  4007. impl equivalent::Equivalent<aya::programs::iter::IterLink> for aya::programs::iter::IterLinkId
  4008. pub fn aya::programs::iter::IterLinkId::equivalent(&self, key: &aya::programs::iter::IterLink) -> bool
  4009. impl core::marker::Freeze for aya::programs::iter::IterLink
  4010. impl core::marker::Send for aya::programs::iter::IterLink
  4011. impl core::marker::Sync for aya::programs::iter::IterLink
  4012. impl core::marker::Unpin for aya::programs::iter::IterLink
  4013. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::IterLink
  4014. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::IterLink
  4015. impl<Q, K> equivalent::Equivalent<K> for aya::programs::iter::IterLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4016. pub fn aya::programs::iter::IterLink::equivalent(&self, key: &K) -> bool
  4017. impl<T, U> core::convert::Into<U> for aya::programs::iter::IterLink where U: core::convert::From<T>
  4018. pub fn aya::programs::iter::IterLink::into(self) -> U
  4019. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::IterLink where U: core::convert::Into<T>
  4020. pub type aya::programs::iter::IterLink::Error = core::convert::Infallible
  4021. pub fn aya::programs::iter::IterLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4022. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::IterLink where U: core::convert::TryFrom<T>
  4023. pub type aya::programs::iter::IterLink::Error = <U as core::convert::TryFrom<T>>::Error
  4024. pub fn aya::programs::iter::IterLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4025. impl<T> core::any::Any for aya::programs::iter::IterLink where T: 'static + ?core::marker::Sized
  4026. pub fn aya::programs::iter::IterLink::type_id(&self) -> core::any::TypeId
  4027. impl<T> core::borrow::Borrow<T> for aya::programs::iter::IterLink where T: ?core::marker::Sized
  4028. pub fn aya::programs::iter::IterLink::borrow(&self) -> &T
  4029. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::IterLink where T: ?core::marker::Sized
  4030. pub fn aya::programs::iter::IterLink::borrow_mut(&mut self) -> &mut T
  4031. impl<T> core::convert::From<T> for aya::programs::iter::IterLink
  4032. pub fn aya::programs::iter::IterLink::from(t: T) -> T
  4033. pub struct aya::programs::iter::IterLinkId(_)
  4034. impl core::cmp::Eq for aya::programs::iter::IterLinkId
  4035. impl core::cmp::PartialEq for aya::programs::iter::IterLinkId
  4036. pub fn aya::programs::iter::IterLinkId::eq(&self, other: &aya::programs::iter::IterLinkId) -> bool
  4037. impl core::fmt::Debug for aya::programs::iter::IterLinkId
  4038. pub fn aya::programs::iter::IterLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4039. impl core::hash::Hash for aya::programs::iter::IterLinkId
  4040. pub fn aya::programs::iter::IterLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4041. impl core::marker::StructuralPartialEq for aya::programs::iter::IterLinkId
  4042. impl equivalent::Equivalent<aya::programs::iter::IterLink> for aya::programs::iter::IterLinkId
  4043. pub fn aya::programs::iter::IterLinkId::equivalent(&self, key: &aya::programs::iter::IterLink) -> bool
  4044. impl core::marker::Freeze for aya::programs::iter::IterLinkId
  4045. impl core::marker::Send for aya::programs::iter::IterLinkId
  4046. impl core::marker::Sync for aya::programs::iter::IterLinkId
  4047. impl core::marker::Unpin for aya::programs::iter::IterLinkId
  4048. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::IterLinkId
  4049. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::IterLinkId
  4050. impl<Q, K> equivalent::Equivalent<K> for aya::programs::iter::IterLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4051. pub fn aya::programs::iter::IterLinkId::equivalent(&self, key: &K) -> bool
  4052. impl<T, U> core::convert::Into<U> for aya::programs::iter::IterLinkId where U: core::convert::From<T>
  4053. pub fn aya::programs::iter::IterLinkId::into(self) -> U
  4054. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::IterLinkId where U: core::convert::Into<T>
  4055. pub type aya::programs::iter::IterLinkId::Error = core::convert::Infallible
  4056. pub fn aya::programs::iter::IterLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4057. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::IterLinkId where U: core::convert::TryFrom<T>
  4058. pub type aya::programs::iter::IterLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4059. pub fn aya::programs::iter::IterLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4060. impl<T> core::any::Any for aya::programs::iter::IterLinkId where T: 'static + ?core::marker::Sized
  4061. pub fn aya::programs::iter::IterLinkId::type_id(&self) -> core::any::TypeId
  4062. impl<T> core::borrow::Borrow<T> for aya::programs::iter::IterLinkId where T: ?core::marker::Sized
  4063. pub fn aya::programs::iter::IterLinkId::borrow(&self) -> &T
  4064. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::IterLinkId where T: ?core::marker::Sized
  4065. pub fn aya::programs::iter::IterLinkId::borrow_mut(&mut self) -> &mut T
  4066. impl<T> core::convert::From<T> for aya::programs::iter::IterLinkId
  4067. pub fn aya::programs::iter::IterLinkId::from(t: T) -> T
  4068. pub mod aya::programs::kprobe
  4069. pub enum aya::programs::kprobe::KProbeError
  4070. pub aya::programs::kprobe::KProbeError::FileError
  4071. pub aya::programs::kprobe::KProbeError::FileError::filename: std::path::PathBuf
  4072. pub aya::programs::kprobe::KProbeError::FileError::io_error: std::io::error::Error
  4073. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  4074. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  4075. impl core::error::Error for aya::programs::kprobe::KProbeError
  4076. pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4077. impl core::fmt::Debug for aya::programs::kprobe::KProbeError
  4078. pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4079. impl core::fmt::Display for aya::programs::kprobe::KProbeError
  4080. pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4081. impl core::marker::Freeze for aya::programs::kprobe::KProbeError
  4082. impl core::marker::Send for aya::programs::kprobe::KProbeError
  4083. impl core::marker::Sync for aya::programs::kprobe::KProbeError
  4084. impl core::marker::Unpin for aya::programs::kprobe::KProbeError
  4085. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError
  4086. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError
  4087. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeError where U: core::convert::From<T>
  4088. pub fn aya::programs::kprobe::KProbeError::into(self) -> U
  4089. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeError where U: core::convert::Into<T>
  4090. pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible
  4091. pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4092. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom<T>
  4093. pub type aya::programs::kprobe::KProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  4094. pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4095. impl<T> alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + ?core::marker::Sized
  4096. pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String
  4097. impl<T> core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + ?core::marker::Sized
  4098. pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId
  4099. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  4100. pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T
  4101. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  4102. pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T
  4103. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeError
  4104. pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T
  4105. pub struct aya::programs::kprobe::KProbe
  4106. impl aya::programs::kprobe::KProbe
  4107. pub const aya::programs::kprobe::KProbe::PROGRAM_TYPE: aya::programs::ProgramType
  4108. pub fn aya::programs::kprobe::KProbe::attach<T: core::convert::AsRef<std::ffi::os_str::OsStr>>(&mut self, fn_name: T, offset: u64) -> core::result::Result<aya::programs::kprobe::KProbeLinkId, aya::programs::ProgramError>
  4109. pub fn aya::programs::kprobe::KProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  4110. pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind
  4111. pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4112. impl aya::programs::kprobe::KProbe
  4113. pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4114. pub fn aya::programs::kprobe::KProbe::take_link(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<aya::programs::kprobe::KProbeLink, aya::programs::ProgramError>
  4115. impl aya::programs::kprobe::KProbe
  4116. pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4117. impl aya::programs::kprobe::KProbe
  4118. pub unsafe fn aya::programs::kprobe::KProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  4119. impl aya::programs::kprobe::KProbe
  4120. pub fn aya::programs::kprobe::KProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4121. impl aya::programs::kprobe::KProbe
  4122. pub fn aya::programs::kprobe::KProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4123. pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4124. impl aya::programs::kprobe::KProbe
  4125. pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4126. impl core::fmt::Debug for aya::programs::kprobe::KProbe
  4127. pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4128. impl core::ops::drop::Drop for aya::programs::kprobe::KProbe
  4129. pub fn aya::programs::kprobe::KProbe::drop(&mut self)
  4130. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  4131. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  4132. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  4133. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  4134. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  4135. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  4136. impl core::marker::Freeze for aya::programs::kprobe::KProbe
  4137. impl core::marker::Send for aya::programs::kprobe::KProbe
  4138. impl core::marker::Sync for aya::programs::kprobe::KProbe
  4139. impl core::marker::Unpin for aya::programs::kprobe::KProbe
  4140. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe
  4141. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe
  4142. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbe where U: core::convert::From<T>
  4143. pub fn aya::programs::kprobe::KProbe::into(self) -> U
  4144. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbe where U: core::convert::Into<T>
  4145. pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible
  4146. pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4147. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbe where U: core::convert::TryFrom<T>
  4148. pub type aya::programs::kprobe::KProbe::Error = <U as core::convert::TryFrom<T>>::Error
  4149. pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4150. impl<T> core::any::Any for aya::programs::kprobe::KProbe where T: 'static + ?core::marker::Sized
  4151. pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId
  4152. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  4153. pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T
  4154. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  4155. pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T
  4156. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbe
  4157. pub fn aya::programs::kprobe::KProbe::from(t: T) -> T
  4158. pub struct aya::programs::kprobe::KProbeLink(_)
  4159. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  4160. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  4161. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4162. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  4163. impl core::cmp::Eq for aya::programs::kprobe::KProbeLink
  4164. impl core::cmp::PartialEq for aya::programs::kprobe::KProbeLink
  4165. pub fn aya::programs::kprobe::KProbeLink::eq(&self, other: &Self) -> bool
  4166. impl core::convert::TryFrom<aya::programs::kprobe::KProbeLink> for aya::programs::links::FdLink
  4167. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4168. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result<Self, Self::Error>
  4169. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::kprobe::KProbeLink
  4170. pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError
  4171. pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4172. impl core::fmt::Debug for aya::programs::kprobe::KProbeLink
  4173. pub fn aya::programs::kprobe::KProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4174. impl core::hash::Hash for aya::programs::kprobe::KProbeLink
  4175. pub fn aya::programs::kprobe::KProbeLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4176. impl core::ops::drop::Drop for aya::programs::kprobe::KProbeLink
  4177. pub fn aya::programs::kprobe::KProbeLink::drop(&mut self)
  4178. impl equivalent::Equivalent<aya::programs::kprobe::KProbeLink> for aya::programs::kprobe::KProbeLinkId
  4179. pub fn aya::programs::kprobe::KProbeLinkId::equivalent(&self, key: &aya::programs::kprobe::KProbeLink) -> bool
  4180. impl core::marker::Freeze for aya::programs::kprobe::KProbeLink
  4181. impl core::marker::Send for aya::programs::kprobe::KProbeLink
  4182. impl core::marker::Sync for aya::programs::kprobe::KProbeLink
  4183. impl core::marker::Unpin for aya::programs::kprobe::KProbeLink
  4184. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLink
  4185. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLink
  4186. impl<Q, K> equivalent::Equivalent<K> for aya::programs::kprobe::KProbeLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4187. pub fn aya::programs::kprobe::KProbeLink::equivalent(&self, key: &K) -> bool
  4188. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeLink where U: core::convert::From<T>
  4189. pub fn aya::programs::kprobe::KProbeLink::into(self) -> U
  4190. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeLink where U: core::convert::Into<T>
  4191. pub type aya::programs::kprobe::KProbeLink::Error = core::convert::Infallible
  4192. pub fn aya::programs::kprobe::KProbeLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4193. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeLink where U: core::convert::TryFrom<T>
  4194. pub type aya::programs::kprobe::KProbeLink::Error = <U as core::convert::TryFrom<T>>::Error
  4195. pub fn aya::programs::kprobe::KProbeLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4196. impl<T> core::any::Any for aya::programs::kprobe::KProbeLink where T: 'static + ?core::marker::Sized
  4197. pub fn aya::programs::kprobe::KProbeLink::type_id(&self) -> core::any::TypeId
  4198. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeLink where T: ?core::marker::Sized
  4199. pub fn aya::programs::kprobe::KProbeLink::borrow(&self) -> &T
  4200. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeLink where T: ?core::marker::Sized
  4201. pub fn aya::programs::kprobe::KProbeLink::borrow_mut(&mut self) -> &mut T
  4202. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeLink
  4203. pub fn aya::programs::kprobe::KProbeLink::from(t: T) -> T
  4204. pub struct aya::programs::kprobe::KProbeLinkId(_)
  4205. impl core::cmp::Eq for aya::programs::kprobe::KProbeLinkId
  4206. impl core::cmp::PartialEq for aya::programs::kprobe::KProbeLinkId
  4207. pub fn aya::programs::kprobe::KProbeLinkId::eq(&self, other: &aya::programs::kprobe::KProbeLinkId) -> bool
  4208. impl core::fmt::Debug for aya::programs::kprobe::KProbeLinkId
  4209. pub fn aya::programs::kprobe::KProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4210. impl core::hash::Hash for aya::programs::kprobe::KProbeLinkId
  4211. pub fn aya::programs::kprobe::KProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4212. impl core::marker::StructuralPartialEq for aya::programs::kprobe::KProbeLinkId
  4213. impl equivalent::Equivalent<aya::programs::kprobe::KProbeLink> for aya::programs::kprobe::KProbeLinkId
  4214. pub fn aya::programs::kprobe::KProbeLinkId::equivalent(&self, key: &aya::programs::kprobe::KProbeLink) -> bool
  4215. impl core::marker::Freeze for aya::programs::kprobe::KProbeLinkId
  4216. impl core::marker::Send for aya::programs::kprobe::KProbeLinkId
  4217. impl core::marker::Sync for aya::programs::kprobe::KProbeLinkId
  4218. impl core::marker::Unpin for aya::programs::kprobe::KProbeLinkId
  4219. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLinkId
  4220. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLinkId
  4221. impl<Q, K> equivalent::Equivalent<K> for aya::programs::kprobe::KProbeLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4222. pub fn aya::programs::kprobe::KProbeLinkId::equivalent(&self, key: &K) -> bool
  4223. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::From<T>
  4224. pub fn aya::programs::kprobe::KProbeLinkId::into(self) -> U
  4225. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::Into<T>
  4226. pub type aya::programs::kprobe::KProbeLinkId::Error = core::convert::Infallible
  4227. pub fn aya::programs::kprobe::KProbeLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4228. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::TryFrom<T>
  4229. pub type aya::programs::kprobe::KProbeLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4230. pub fn aya::programs::kprobe::KProbeLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4231. impl<T> core::any::Any for aya::programs::kprobe::KProbeLinkId where T: 'static + ?core::marker::Sized
  4232. pub fn aya::programs::kprobe::KProbeLinkId::type_id(&self) -> core::any::TypeId
  4233. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeLinkId where T: ?core::marker::Sized
  4234. pub fn aya::programs::kprobe::KProbeLinkId::borrow(&self) -> &T
  4235. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeLinkId where T: ?core::marker::Sized
  4236. pub fn aya::programs::kprobe::KProbeLinkId::borrow_mut(&mut self) -> &mut T
  4237. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeLinkId
  4238. pub fn aya::programs::kprobe::KProbeLinkId::from(t: T) -> T
  4239. pub mod aya::programs::links
  4240. pub enum aya::programs::links::CgroupAttachMode
  4241. pub aya::programs::links::CgroupAttachMode::AllowMultiple
  4242. pub aya::programs::links::CgroupAttachMode::AllowOverride
  4243. pub aya::programs::links::CgroupAttachMode::Single
  4244. impl core::clone::Clone for aya::programs::links::CgroupAttachMode
  4245. pub fn aya::programs::links::CgroupAttachMode::clone(&self) -> aya::programs::links::CgroupAttachMode
  4246. impl core::convert::From<aya::programs::links::CgroupAttachMode> for u32
  4247. pub fn u32::from(mode: aya::programs::links::CgroupAttachMode) -> Self
  4248. impl core::default::Default for aya::programs::links::CgroupAttachMode
  4249. pub fn aya::programs::links::CgroupAttachMode::default() -> aya::programs::links::CgroupAttachMode
  4250. impl core::fmt::Debug for aya::programs::links::CgroupAttachMode
  4251. pub fn aya::programs::links::CgroupAttachMode::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4252. impl core::marker::Copy for aya::programs::links::CgroupAttachMode
  4253. impl core::marker::Freeze for aya::programs::links::CgroupAttachMode
  4254. impl core::marker::Send for aya::programs::links::CgroupAttachMode
  4255. impl core::marker::Sync for aya::programs::links::CgroupAttachMode
  4256. impl core::marker::Unpin for aya::programs::links::CgroupAttachMode
  4257. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::CgroupAttachMode
  4258. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::CgroupAttachMode
  4259. impl<T, U> core::convert::Into<U> for aya::programs::links::CgroupAttachMode where U: core::convert::From<T>
  4260. pub fn aya::programs::links::CgroupAttachMode::into(self) -> U
  4261. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::CgroupAttachMode where U: core::convert::Into<T>
  4262. pub type aya::programs::links::CgroupAttachMode::Error = core::convert::Infallible
  4263. pub fn aya::programs::links::CgroupAttachMode::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4264. impl<T, U> core::convert::TryInto<U> for aya::programs::links::CgroupAttachMode where U: core::convert::TryFrom<T>
  4265. pub type aya::programs::links::CgroupAttachMode::Error = <U as core::convert::TryFrom<T>>::Error
  4266. pub fn aya::programs::links::CgroupAttachMode::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4267. impl<T> alloc::borrow::ToOwned for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  4268. pub type aya::programs::links::CgroupAttachMode::Owned = T
  4269. pub fn aya::programs::links::CgroupAttachMode::clone_into(&self, target: &mut T)
  4270. pub fn aya::programs::links::CgroupAttachMode::to_owned(&self) -> T
  4271. impl<T> core::any::Any for aya::programs::links::CgroupAttachMode where T: 'static + ?core::marker::Sized
  4272. pub fn aya::programs::links::CgroupAttachMode::type_id(&self) -> core::any::TypeId
  4273. impl<T> core::borrow::Borrow<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  4274. pub fn aya::programs::links::CgroupAttachMode::borrow(&self) -> &T
  4275. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  4276. pub fn aya::programs::links::CgroupAttachMode::borrow_mut(&mut self) -> &mut T
  4277. impl<T> core::clone::CloneToUninit for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  4278. pub unsafe fn aya::programs::links::CgroupAttachMode::clone_to_uninit(&self, dest: *mut u8)
  4279. impl<T> core::convert::From<T> for aya::programs::links::CgroupAttachMode
  4280. pub fn aya::programs::links::CgroupAttachMode::from(t: T) -> T
  4281. pub enum aya::programs::links::LinkError
  4282. pub aya::programs::links::LinkError::InvalidLink
  4283. pub aya::programs::links::LinkError::SyscallError(aya::sys::SyscallError)
  4284. pub aya::programs::links::LinkError::UnknownLinkType(u32)
  4285. impl core::convert::From<aya::sys::SyscallError> for aya::programs::links::LinkError
  4286. pub fn aya::programs::links::LinkError::from(source: aya::sys::SyscallError) -> Self
  4287. impl core::error::Error for aya::programs::links::LinkError
  4288. pub fn aya::programs::links::LinkError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4289. impl core::fmt::Debug for aya::programs::links::LinkError
  4290. pub fn aya::programs::links::LinkError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4291. impl core::fmt::Display for aya::programs::links::LinkError
  4292. pub fn aya::programs::links::LinkError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4293. impl core::marker::Freeze for aya::programs::links::LinkError
  4294. impl core::marker::Send for aya::programs::links::LinkError
  4295. impl core::marker::Sync for aya::programs::links::LinkError
  4296. impl core::marker::Unpin for aya::programs::links::LinkError
  4297. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkError
  4298. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkError
  4299. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkError where U: core::convert::From<T>
  4300. pub fn aya::programs::links::LinkError::into(self) -> U
  4301. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkError where U: core::convert::Into<T>
  4302. pub type aya::programs::links::LinkError::Error = core::convert::Infallible
  4303. pub fn aya::programs::links::LinkError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4304. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkError where U: core::convert::TryFrom<T>
  4305. pub type aya::programs::links::LinkError::Error = <U as core::convert::TryFrom<T>>::Error
  4306. pub fn aya::programs::links::LinkError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4307. impl<T> alloc::string::ToString for aya::programs::links::LinkError where T: core::fmt::Display + ?core::marker::Sized
  4308. pub fn aya::programs::links::LinkError::to_string(&self) -> alloc::string::String
  4309. impl<T> core::any::Any for aya::programs::links::LinkError where T: 'static + ?core::marker::Sized
  4310. pub fn aya::programs::links::LinkError::type_id(&self) -> core::any::TypeId
  4311. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkError where T: ?core::marker::Sized
  4312. pub fn aya::programs::links::LinkError::borrow(&self) -> &T
  4313. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkError where T: ?core::marker::Sized
  4314. pub fn aya::programs::links::LinkError::borrow_mut(&mut self) -> &mut T
  4315. impl<T> core::convert::From<T> for aya::programs::links::LinkError
  4316. pub fn aya::programs::links::LinkError::from(t: T) -> T
  4317. #[non_exhaustive] pub enum aya::programs::links::LinkType
  4318. pub aya::programs::links::LinkType::Cgroup = 3
  4319. pub aya::programs::links::LinkType::Iter = 4
  4320. pub aya::programs::links::LinkType::KProbeMulti = 8
  4321. pub aya::programs::links::LinkType::Netfilter = 10
  4322. pub aya::programs::links::LinkType::Netkit = 13
  4323. pub aya::programs::links::LinkType::Netns = 5
  4324. pub aya::programs::links::LinkType::PerfEvent = 7
  4325. pub aya::programs::links::LinkType::RawTracePoint = 1
  4326. pub aya::programs::links::LinkType::StructOps = 9
  4327. pub aya::programs::links::LinkType::Tcx = 11
  4328. pub aya::programs::links::LinkType::Tracing = 2
  4329. pub aya::programs::links::LinkType::UProbeMulti = 12
  4330. pub aya::programs::links::LinkType::Unspecified = 0
  4331. pub aya::programs::links::LinkType::Xdp = 6
  4332. impl core::clone::Clone for aya::programs::links::LinkType
  4333. pub fn aya::programs::links::LinkType::clone(&self) -> aya::programs::links::LinkType
  4334. impl core::cmp::PartialEq for aya::programs::links::LinkType
  4335. pub fn aya::programs::links::LinkType::eq(&self, other: &aya::programs::links::LinkType) -> bool
  4336. impl core::convert::TryFrom<aya_obj::generated::linux_bindings_x86_64::bpf_link_type> for aya::programs::links::LinkType
  4337. pub type aya::programs::links::LinkType::Error = aya::programs::links::LinkError
  4338. pub fn aya::programs::links::LinkType::try_from(link_type: aya_obj::generated::linux_bindings_x86_64::bpf_link_type) -> core::result::Result<Self, Self::Error>
  4339. impl core::fmt::Debug for aya::programs::links::LinkType
  4340. pub fn aya::programs::links::LinkType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4341. impl core::marker::Copy for aya::programs::links::LinkType
  4342. impl core::marker::StructuralPartialEq for aya::programs::links::LinkType
  4343. impl core::marker::Freeze for aya::programs::links::LinkType
  4344. impl core::marker::Send for aya::programs::links::LinkType
  4345. impl core::marker::Sync for aya::programs::links::LinkType
  4346. impl core::marker::Unpin for aya::programs::links::LinkType
  4347. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkType
  4348. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkType
  4349. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkType where U: core::convert::From<T>
  4350. pub fn aya::programs::links::LinkType::into(self) -> U
  4351. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkType where U: core::convert::Into<T>
  4352. pub type aya::programs::links::LinkType::Error = core::convert::Infallible
  4353. pub fn aya::programs::links::LinkType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4354. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkType where U: core::convert::TryFrom<T>
  4355. pub type aya::programs::links::LinkType::Error = <U as core::convert::TryFrom<T>>::Error
  4356. pub fn aya::programs::links::LinkType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4357. impl<T> alloc::borrow::ToOwned for aya::programs::links::LinkType where T: core::clone::Clone
  4358. pub type aya::programs::links::LinkType::Owned = T
  4359. pub fn aya::programs::links::LinkType::clone_into(&self, target: &mut T)
  4360. pub fn aya::programs::links::LinkType::to_owned(&self) -> T
  4361. impl<T> core::any::Any for aya::programs::links::LinkType where T: 'static + ?core::marker::Sized
  4362. pub fn aya::programs::links::LinkType::type_id(&self) -> core::any::TypeId
  4363. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkType where T: ?core::marker::Sized
  4364. pub fn aya::programs::links::LinkType::borrow(&self) -> &T
  4365. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkType where T: ?core::marker::Sized
  4366. pub fn aya::programs::links::LinkType::borrow_mut(&mut self) -> &mut T
  4367. impl<T> core::clone::CloneToUninit for aya::programs::links::LinkType where T: core::clone::Clone
  4368. pub unsafe fn aya::programs::links::LinkType::clone_to_uninit(&self, dest: *mut u8)
  4369. impl<T> core::convert::From<T> for aya::programs::links::LinkType
  4370. pub fn aya::programs::links::LinkType::from(t: T) -> T
  4371. pub struct aya::programs::links::FdLink
  4372. impl aya::programs::links::FdLink
  4373. pub fn aya::programs::links::FdLink::info(&self) -> core::result::Result<aya::programs::links::LinkInfo, aya::programs::links::LinkError>
  4374. pub fn aya::programs::links::FdLink::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<aya::programs::links::PinnedLink, aya::pin::PinError>
  4375. impl aya::programs::links::Link for aya::programs::links::FdLink
  4376. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  4377. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4378. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  4379. impl core::cmp::Eq for aya::programs::links::FdLink
  4380. impl core::cmp::PartialEq for aya::programs::links::FdLink
  4381. pub fn aya::programs::links::FdLink::eq(&self, other: &Self) -> bool
  4382. impl core::convert::From<aya::programs::extension::ExtensionLink> for aya::programs::links::FdLink
  4383. pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink
  4384. impl core::convert::From<aya::programs::fentry::FEntryLink> for aya::programs::links::FdLink
  4385. pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink
  4386. impl core::convert::From<aya::programs::fexit::FExitLink> for aya::programs::links::FdLink
  4387. pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink
  4388. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::extension::ExtensionLink
  4389. pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink
  4390. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fentry::FEntryLink
  4391. pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink
  4392. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fexit::FExitLink
  4393. pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink
  4394. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::lsm::LsmLink
  4395. pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink
  4396. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::raw_trace_point::RawTracePointLink
  4397. pub fn aya::programs::raw_trace_point::RawTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::raw_trace_point::RawTracePointLink
  4398. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::sk_lookup::SkLookupLink
  4399. pub fn aya::programs::sk_lookup::SkLookupLink::from(b: aya::programs::links::FdLink) -> aya::programs::sk_lookup::SkLookupLink
  4400. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::tp_btf::BtfTracePointLink
  4401. pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink
  4402. impl core::convert::From<aya::programs::links::PinnedLink> for aya::programs::links::FdLink
  4403. pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self
  4404. impl core::convert::From<aya::programs::lsm::LsmLink> for aya::programs::links::FdLink
  4405. pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink
  4406. impl core::convert::From<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::links::FdLink
  4407. pub fn aya::programs::links::FdLink::from(w: aya::programs::raw_trace_point::RawTracePointLink) -> aya::programs::links::FdLink
  4408. impl core::convert::From<aya::programs::sk_lookup::SkLookupLink> for aya::programs::links::FdLink
  4409. pub fn aya::programs::links::FdLink::from(w: aya::programs::sk_lookup::SkLookupLink) -> aya::programs::links::FdLink
  4410. impl core::convert::From<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::links::FdLink
  4411. pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink
  4412. impl core::convert::TryFrom<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::links::FdLink
  4413. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4414. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_skb::CgroupSkbLink) -> core::result::Result<Self, Self::Error>
  4415. impl core::convert::TryFrom<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::links::FdLink
  4416. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4417. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_sock::CgroupSockLink) -> core::result::Result<Self, Self::Error>
  4418. impl core::convert::TryFrom<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::links::FdLink
  4419. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4420. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> core::result::Result<Self, Self::Error>
  4421. impl core::convert::TryFrom<aya::programs::iter::IterLink> for aya::programs::links::FdLink
  4422. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4423. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::iter::IterLink) -> core::result::Result<Self, Self::Error>
  4424. impl core::convert::TryFrom<aya::programs::kprobe::KProbeLink> for aya::programs::links::FdLink
  4425. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4426. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result<Self, Self::Error>
  4427. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::iter::IterLink
  4428. pub type aya::programs::iter::IterLink::Error = aya::programs::links::LinkError
  4429. pub fn aya::programs::iter::IterLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4430. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::kprobe::KProbeLink
  4431. pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError
  4432. pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4433. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::perf_event::PerfEventLink
  4434. pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError
  4435. pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4436. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::tc::SchedClassifierLink
  4437. pub type aya::programs::tc::SchedClassifierLink::Error = aya::programs::links::LinkError
  4438. pub fn aya::programs::tc::SchedClassifierLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4439. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::trace_point::TracePointLink
  4440. pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError
  4441. pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4442. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::uprobe::UProbeLink
  4443. pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError
  4444. pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4445. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::xdp::XdpLink
  4446. pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError
  4447. pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4448. impl core::convert::TryFrom<aya::programs::perf_event::PerfEventLink> for aya::programs::links::FdLink
  4449. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4450. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result<Self, Self::Error>
  4451. impl core::convert::TryFrom<aya::programs::sock_ops::SockOpsLink> for aya::programs::links::FdLink
  4452. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4453. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::sock_ops::SockOpsLink) -> core::result::Result<Self, Self::Error>
  4454. impl core::convert::TryFrom<aya::programs::tc::SchedClassifierLink> for aya::programs::links::FdLink
  4455. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4456. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  4457. impl core::convert::TryFrom<aya::programs::trace_point::TracePointLink> for aya::programs::links::FdLink
  4458. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4459. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result<Self, Self::Error>
  4460. impl core::convert::TryFrom<aya::programs::uprobe::UProbeLink> for aya::programs::links::FdLink
  4461. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4462. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result<Self, Self::Error>
  4463. impl core::convert::TryFrom<aya::programs::xdp::XdpLink> for aya::programs::links::FdLink
  4464. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4465. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result<Self, Self::Error>
  4466. impl core::fmt::Debug for aya::programs::links::FdLink
  4467. pub fn aya::programs::links::FdLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4468. impl core::hash::Hash for aya::programs::links::FdLink
  4469. pub fn aya::programs::links::FdLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4470. impl equivalent::Equivalent<aya::programs::links::FdLink> for aya::programs::links::FdLinkId
  4471. pub fn aya::programs::links::FdLinkId::equivalent(&self, key: &aya::programs::links::FdLink) -> bool
  4472. impl<'a> core::convert::TryFrom<&'a aya::programs::tc::SchedClassifierLink> for &'a aya::programs::links::FdLink
  4473. pub type &'a aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4474. pub fn &'a aya::programs::links::FdLink::try_from(value: &'a aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  4475. impl core::marker::Freeze for aya::programs::links::FdLink
  4476. impl core::marker::Send for aya::programs::links::FdLink
  4477. impl core::marker::Sync for aya::programs::links::FdLink
  4478. impl core::marker::Unpin for aya::programs::links::FdLink
  4479. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLink
  4480. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLink
  4481. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::FdLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4482. pub fn aya::programs::links::FdLink::equivalent(&self, key: &K) -> bool
  4483. impl<T, U> core::convert::Into<U> for aya::programs::links::FdLink where U: core::convert::From<T>
  4484. pub fn aya::programs::links::FdLink::into(self) -> U
  4485. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::FdLink where U: core::convert::Into<T>
  4486. pub type aya::programs::links::FdLink::Error = core::convert::Infallible
  4487. pub fn aya::programs::links::FdLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4488. impl<T, U> core::convert::TryInto<U> for aya::programs::links::FdLink where U: core::convert::TryFrom<T>
  4489. pub type aya::programs::links::FdLink::Error = <U as core::convert::TryFrom<T>>::Error
  4490. pub fn aya::programs::links::FdLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4491. impl<T> core::any::Any for aya::programs::links::FdLink where T: 'static + ?core::marker::Sized
  4492. pub fn aya::programs::links::FdLink::type_id(&self) -> core::any::TypeId
  4493. impl<T> core::borrow::Borrow<T> for aya::programs::links::FdLink where T: ?core::marker::Sized
  4494. pub fn aya::programs::links::FdLink::borrow(&self) -> &T
  4495. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::FdLink where T: ?core::marker::Sized
  4496. pub fn aya::programs::links::FdLink::borrow_mut(&mut self) -> &mut T
  4497. impl<T> core::convert::From<T> for aya::programs::links::FdLink
  4498. pub fn aya::programs::links::FdLink::from(t: T) -> T
  4499. pub struct aya::programs::links::FdLinkId(_)
  4500. impl core::cmp::Eq for aya::programs::links::FdLinkId
  4501. impl core::cmp::PartialEq for aya::programs::links::FdLinkId
  4502. pub fn aya::programs::links::FdLinkId::eq(&self, other: &aya::programs::links::FdLinkId) -> bool
  4503. impl core::fmt::Debug for aya::programs::links::FdLinkId
  4504. pub fn aya::programs::links::FdLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4505. impl core::hash::Hash for aya::programs::links::FdLinkId
  4506. pub fn aya::programs::links::FdLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4507. impl core::marker::StructuralPartialEq for aya::programs::links::FdLinkId
  4508. impl equivalent::Equivalent<aya::programs::links::FdLink> for aya::programs::links::FdLinkId
  4509. pub fn aya::programs::links::FdLinkId::equivalent(&self, key: &aya::programs::links::FdLink) -> bool
  4510. impl core::marker::Freeze for aya::programs::links::FdLinkId
  4511. impl core::marker::Send for aya::programs::links::FdLinkId
  4512. impl core::marker::Sync for aya::programs::links::FdLinkId
  4513. impl core::marker::Unpin for aya::programs::links::FdLinkId
  4514. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLinkId
  4515. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLinkId
  4516. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::FdLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4517. pub fn aya::programs::links::FdLinkId::equivalent(&self, key: &K) -> bool
  4518. impl<T, U> core::convert::Into<U> for aya::programs::links::FdLinkId where U: core::convert::From<T>
  4519. pub fn aya::programs::links::FdLinkId::into(self) -> U
  4520. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::FdLinkId where U: core::convert::Into<T>
  4521. pub type aya::programs::links::FdLinkId::Error = core::convert::Infallible
  4522. pub fn aya::programs::links::FdLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4523. impl<T, U> core::convert::TryInto<U> for aya::programs::links::FdLinkId where U: core::convert::TryFrom<T>
  4524. pub type aya::programs::links::FdLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4525. pub fn aya::programs::links::FdLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4526. impl<T> core::any::Any for aya::programs::links::FdLinkId where T: 'static + ?core::marker::Sized
  4527. pub fn aya::programs::links::FdLinkId::type_id(&self) -> core::any::TypeId
  4528. impl<T> core::borrow::Borrow<T> for aya::programs::links::FdLinkId where T: ?core::marker::Sized
  4529. pub fn aya::programs::links::FdLinkId::borrow(&self) -> &T
  4530. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::FdLinkId where T: ?core::marker::Sized
  4531. pub fn aya::programs::links::FdLinkId::borrow_mut(&mut self) -> &mut T
  4532. impl<T> core::convert::From<T> for aya::programs::links::FdLinkId
  4533. pub fn aya::programs::links::FdLinkId::from(t: T) -> T
  4534. pub struct aya::programs::links::LinkInfo(_)
  4535. impl aya::programs::links::LinkInfo
  4536. pub fn aya::programs::links::LinkInfo::id(&self) -> u32
  4537. pub fn aya::programs::links::LinkInfo::link_type(&self) -> core::result::Result<aya::programs::links::LinkType, aya::programs::links::LinkError>
  4538. pub fn aya::programs::links::LinkInfo::program_id(&self) -> u32
  4539. impl core::marker::Freeze for aya::programs::links::LinkInfo
  4540. impl core::marker::Send for aya::programs::links::LinkInfo
  4541. impl core::marker::Sync for aya::programs::links::LinkInfo
  4542. impl core::marker::Unpin for aya::programs::links::LinkInfo
  4543. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkInfo
  4544. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkInfo
  4545. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkInfo where U: core::convert::From<T>
  4546. pub fn aya::programs::links::LinkInfo::into(self) -> U
  4547. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkInfo where U: core::convert::Into<T>
  4548. pub type aya::programs::links::LinkInfo::Error = core::convert::Infallible
  4549. pub fn aya::programs::links::LinkInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4550. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkInfo where U: core::convert::TryFrom<T>
  4551. pub type aya::programs::links::LinkInfo::Error = <U as core::convert::TryFrom<T>>::Error
  4552. pub fn aya::programs::links::LinkInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4553. impl<T> core::any::Any for aya::programs::links::LinkInfo where T: 'static + ?core::marker::Sized
  4554. pub fn aya::programs::links::LinkInfo::type_id(&self) -> core::any::TypeId
  4555. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkInfo where T: ?core::marker::Sized
  4556. pub fn aya::programs::links::LinkInfo::borrow(&self) -> &T
  4557. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkInfo where T: ?core::marker::Sized
  4558. pub fn aya::programs::links::LinkInfo::borrow_mut(&mut self) -> &mut T
  4559. impl<T> core::convert::From<T> for aya::programs::links::LinkInfo
  4560. pub fn aya::programs::links::LinkInfo::from(t: T) -> T
  4561. pub struct aya::programs::links::LinkOrder
  4562. impl aya::programs::links::LinkOrder
  4563. pub fn aya::programs::links::LinkOrder::after_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  4564. pub fn aya::programs::links::LinkOrder::after_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  4565. pub fn aya::programs::links::LinkOrder::after_program_id(id: aya::programs::ProgramId) -> Self
  4566. pub fn aya::programs::links::LinkOrder::before_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  4567. pub fn aya::programs::links::LinkOrder::before_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  4568. pub fn aya::programs::links::LinkOrder::before_program_id(id: aya::programs::ProgramId) -> Self
  4569. pub fn aya::programs::links::LinkOrder::first() -> Self
  4570. pub fn aya::programs::links::LinkOrder::last() -> Self
  4571. impl core::default::Default for aya::programs::links::LinkOrder
  4572. pub fn aya::programs::links::LinkOrder::default() -> Self
  4573. impl core::fmt::Debug for aya::programs::links::LinkOrder
  4574. pub fn aya::programs::links::LinkOrder::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4575. impl core::marker::Freeze for aya::programs::links::LinkOrder
  4576. impl core::marker::Send for aya::programs::links::LinkOrder
  4577. impl core::marker::Sync for aya::programs::links::LinkOrder
  4578. impl core::marker::Unpin for aya::programs::links::LinkOrder
  4579. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkOrder
  4580. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkOrder
  4581. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkOrder where U: core::convert::From<T>
  4582. pub fn aya::programs::links::LinkOrder::into(self) -> U
  4583. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkOrder where U: core::convert::Into<T>
  4584. pub type aya::programs::links::LinkOrder::Error = core::convert::Infallible
  4585. pub fn aya::programs::links::LinkOrder::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4586. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkOrder where U: core::convert::TryFrom<T>
  4587. pub type aya::programs::links::LinkOrder::Error = <U as core::convert::TryFrom<T>>::Error
  4588. pub fn aya::programs::links::LinkOrder::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4589. impl<T> core::any::Any for aya::programs::links::LinkOrder where T: 'static + ?core::marker::Sized
  4590. pub fn aya::programs::links::LinkOrder::type_id(&self) -> core::any::TypeId
  4591. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  4592. pub fn aya::programs::links::LinkOrder::borrow(&self) -> &T
  4593. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  4594. pub fn aya::programs::links::LinkOrder::borrow_mut(&mut self) -> &mut T
  4595. impl<T> core::convert::From<T> for aya::programs::links::LinkOrder
  4596. pub fn aya::programs::links::LinkOrder::from(t: T) -> T
  4597. pub struct aya::programs::links::PinnedLink
  4598. impl aya::programs::links::PinnedLink
  4599. pub fn aya::programs::links::PinnedLink::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::links::LinkError>
  4600. pub fn aya::programs::links::PinnedLink::unpin(self) -> core::result::Result<aya::programs::links::FdLink, std::io::error::Error>
  4601. impl core::convert::From<aya::programs::links::PinnedLink> for aya::programs::links::FdLink
  4602. pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self
  4603. impl core::fmt::Debug for aya::programs::links::PinnedLink
  4604. pub fn aya::programs::links::PinnedLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4605. impl core::marker::Freeze for aya::programs::links::PinnedLink
  4606. impl core::marker::Send for aya::programs::links::PinnedLink
  4607. impl core::marker::Sync for aya::programs::links::PinnedLink
  4608. impl core::marker::Unpin for aya::programs::links::PinnedLink
  4609. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::PinnedLink
  4610. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::PinnedLink
  4611. impl<T, U> core::convert::Into<U> for aya::programs::links::PinnedLink where U: core::convert::From<T>
  4612. pub fn aya::programs::links::PinnedLink::into(self) -> U
  4613. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::PinnedLink where U: core::convert::Into<T>
  4614. pub type aya::programs::links::PinnedLink::Error = core::convert::Infallible
  4615. pub fn aya::programs::links::PinnedLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4616. impl<T, U> core::convert::TryInto<U> for aya::programs::links::PinnedLink where U: core::convert::TryFrom<T>
  4617. pub type aya::programs::links::PinnedLink::Error = <U as core::convert::TryFrom<T>>::Error
  4618. pub fn aya::programs::links::PinnedLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4619. impl<T> core::any::Any for aya::programs::links::PinnedLink where T: 'static + ?core::marker::Sized
  4620. pub fn aya::programs::links::PinnedLink::type_id(&self) -> core::any::TypeId
  4621. impl<T> core::borrow::Borrow<T> for aya::programs::links::PinnedLink where T: ?core::marker::Sized
  4622. pub fn aya::programs::links::PinnedLink::borrow(&self) -> &T
  4623. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::PinnedLink where T: ?core::marker::Sized
  4624. pub fn aya::programs::links::PinnedLink::borrow_mut(&mut self) -> &mut T
  4625. impl<T> core::convert::From<T> for aya::programs::links::PinnedLink
  4626. pub fn aya::programs::links::PinnedLink::from(t: T) -> T
  4627. pub struct aya::programs::links::ProgAttachLink
  4628. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  4629. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  4630. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4631. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  4632. impl core::cmp::Eq for aya::programs::links::ProgAttachLink
  4633. impl core::cmp::PartialEq for aya::programs::links::ProgAttachLink
  4634. pub fn aya::programs::links::ProgAttachLink::eq(&self, other: &Self) -> bool
  4635. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_msg::SkMsgLink
  4636. pub fn aya::programs::sk_msg::SkMsgLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_msg::SkMsgLink
  4637. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_skb::SkSkbLink
  4638. pub fn aya::programs::sk_skb::SkSkbLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_skb::SkSkbLink
  4639. impl core::convert::From<aya::programs::sk_msg::SkMsgLink> for aya::programs::links::ProgAttachLink
  4640. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_msg::SkMsgLink) -> aya::programs::links::ProgAttachLink
  4641. impl core::convert::From<aya::programs::sk_skb::SkSkbLink> for aya::programs::links::ProgAttachLink
  4642. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_skb::SkSkbLink) -> aya::programs::links::ProgAttachLink
  4643. impl core::fmt::Debug for aya::programs::links::ProgAttachLink
  4644. pub fn aya::programs::links::ProgAttachLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4645. impl core::hash::Hash for aya::programs::links::ProgAttachLink
  4646. pub fn aya::programs::links::ProgAttachLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4647. impl equivalent::Equivalent<aya::programs::links::ProgAttachLink> for aya::programs::links::ProgAttachLinkId
  4648. pub fn aya::programs::links::ProgAttachLinkId::equivalent(&self, key: &aya::programs::links::ProgAttachLink) -> bool
  4649. impl core::marker::Freeze for aya::programs::links::ProgAttachLink
  4650. impl core::marker::Send for aya::programs::links::ProgAttachLink
  4651. impl core::marker::Sync for aya::programs::links::ProgAttachLink
  4652. impl core::marker::Unpin for aya::programs::links::ProgAttachLink
  4653. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLink
  4654. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLink
  4655. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::ProgAttachLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4656. pub fn aya::programs::links::ProgAttachLink::equivalent(&self, key: &K) -> bool
  4657. impl<T, U> core::convert::Into<U> for aya::programs::links::ProgAttachLink where U: core::convert::From<T>
  4658. pub fn aya::programs::links::ProgAttachLink::into(self) -> U
  4659. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::ProgAttachLink where U: core::convert::Into<T>
  4660. pub type aya::programs::links::ProgAttachLink::Error = core::convert::Infallible
  4661. pub fn aya::programs::links::ProgAttachLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4662. impl<T, U> core::convert::TryInto<U> for aya::programs::links::ProgAttachLink where U: core::convert::TryFrom<T>
  4663. pub type aya::programs::links::ProgAttachLink::Error = <U as core::convert::TryFrom<T>>::Error
  4664. pub fn aya::programs::links::ProgAttachLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4665. impl<T> core::any::Any for aya::programs::links::ProgAttachLink where T: 'static + ?core::marker::Sized
  4666. pub fn aya::programs::links::ProgAttachLink::type_id(&self) -> core::any::TypeId
  4667. impl<T> core::borrow::Borrow<T> for aya::programs::links::ProgAttachLink where T: ?core::marker::Sized
  4668. pub fn aya::programs::links::ProgAttachLink::borrow(&self) -> &T
  4669. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::ProgAttachLink where T: ?core::marker::Sized
  4670. pub fn aya::programs::links::ProgAttachLink::borrow_mut(&mut self) -> &mut T
  4671. impl<T> core::convert::From<T> for aya::programs::links::ProgAttachLink
  4672. pub fn aya::programs::links::ProgAttachLink::from(t: T) -> T
  4673. pub struct aya::programs::links::ProgAttachLinkId(_, _, _)
  4674. impl core::cmp::Eq for aya::programs::links::ProgAttachLinkId
  4675. impl core::cmp::PartialEq for aya::programs::links::ProgAttachLinkId
  4676. pub fn aya::programs::links::ProgAttachLinkId::eq(&self, other: &aya::programs::links::ProgAttachLinkId) -> bool
  4677. impl core::fmt::Debug for aya::programs::links::ProgAttachLinkId
  4678. pub fn aya::programs::links::ProgAttachLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4679. impl core::hash::Hash for aya::programs::links::ProgAttachLinkId
  4680. pub fn aya::programs::links::ProgAttachLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4681. impl core::marker::StructuralPartialEq for aya::programs::links::ProgAttachLinkId
  4682. impl equivalent::Equivalent<aya::programs::links::ProgAttachLink> for aya::programs::links::ProgAttachLinkId
  4683. pub fn aya::programs::links::ProgAttachLinkId::equivalent(&self, key: &aya::programs::links::ProgAttachLink) -> bool
  4684. impl core::marker::Freeze for aya::programs::links::ProgAttachLinkId
  4685. impl core::marker::Send for aya::programs::links::ProgAttachLinkId
  4686. impl core::marker::Sync for aya::programs::links::ProgAttachLinkId
  4687. impl core::marker::Unpin for aya::programs::links::ProgAttachLinkId
  4688. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLinkId
  4689. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLinkId
  4690. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::ProgAttachLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4691. pub fn aya::programs::links::ProgAttachLinkId::equivalent(&self, key: &K) -> bool
  4692. impl<T, U> core::convert::Into<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::From<T>
  4693. pub fn aya::programs::links::ProgAttachLinkId::into(self) -> U
  4694. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::Into<T>
  4695. pub type aya::programs::links::ProgAttachLinkId::Error = core::convert::Infallible
  4696. pub fn aya::programs::links::ProgAttachLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4697. impl<T, U> core::convert::TryInto<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::TryFrom<T>
  4698. pub type aya::programs::links::ProgAttachLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4699. pub fn aya::programs::links::ProgAttachLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4700. impl<T> core::any::Any for aya::programs::links::ProgAttachLinkId where T: 'static + ?core::marker::Sized
  4701. pub fn aya::programs::links::ProgAttachLinkId::type_id(&self) -> core::any::TypeId
  4702. impl<T> core::borrow::Borrow<T> for aya::programs::links::ProgAttachLinkId where T: ?core::marker::Sized
  4703. pub fn aya::programs::links::ProgAttachLinkId::borrow(&self) -> &T
  4704. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::ProgAttachLinkId where T: ?core::marker::Sized
  4705. pub fn aya::programs::links::ProgAttachLinkId::borrow_mut(&mut self) -> &mut T
  4706. impl<T> core::convert::From<T> for aya::programs::links::ProgAttachLinkId
  4707. pub fn aya::programs::links::ProgAttachLinkId::from(t: T) -> T
  4708. pub trait aya::programs::links::Link: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + 'static
  4709. pub type aya::programs::links::Link::Id: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + equivalent::Equivalent<Self>
  4710. pub fn aya::programs::links::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4711. pub fn aya::programs::links::Link::id(&self) -> Self::Id
  4712. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  4713. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  4714. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4715. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  4716. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  4717. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  4718. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4719. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  4720. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  4721. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  4722. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4723. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  4724. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  4725. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  4726. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4727. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  4728. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  4729. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  4730. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4731. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  4732. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  4733. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  4734. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4735. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  4736. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  4737. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  4738. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4739. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  4740. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  4741. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  4742. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4743. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  4744. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  4745. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  4746. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4747. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  4748. impl aya::programs::links::Link for aya::programs::flow_dissector::FlowDissectorLink
  4749. pub type aya::programs::flow_dissector::FlowDissectorLink::Id = aya::programs::flow_dissector::FlowDissectorLinkId
  4750. pub fn aya::programs::flow_dissector::FlowDissectorLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4751. pub fn aya::programs::flow_dissector::FlowDissectorLink::id(&self) -> Self::Id
  4752. impl aya::programs::links::Link for aya::programs::iter::IterLink
  4753. pub type aya::programs::iter::IterLink::Id = aya::programs::iter::IterLinkId
  4754. pub fn aya::programs::iter::IterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4755. pub fn aya::programs::iter::IterLink::id(&self) -> Self::Id
  4756. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  4757. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  4758. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4759. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  4760. impl aya::programs::links::Link for aya::programs::links::FdLink
  4761. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  4762. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4763. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  4764. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  4765. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  4766. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4767. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  4768. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  4769. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  4770. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4771. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  4772. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  4773. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  4774. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4775. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  4776. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  4777. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  4778. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4779. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  4780. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  4781. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  4782. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4783. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  4784. impl aya::programs::links::Link for aya::programs::raw_trace_point::RawTracePointLink
  4785. pub type aya::programs::raw_trace_point::RawTracePointLink::Id = aya::programs::raw_trace_point::RawTracePointLinkId
  4786. pub fn aya::programs::raw_trace_point::RawTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4787. pub fn aya::programs::raw_trace_point::RawTracePointLink::id(&self) -> Self::Id
  4788. impl aya::programs::links::Link for aya::programs::sk_lookup::SkLookupLink
  4789. pub type aya::programs::sk_lookup::SkLookupLink::Id = aya::programs::sk_lookup::SkLookupLinkId
  4790. pub fn aya::programs::sk_lookup::SkLookupLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4791. pub fn aya::programs::sk_lookup::SkLookupLink::id(&self) -> Self::Id
  4792. impl aya::programs::links::Link for aya::programs::sk_msg::SkMsgLink
  4793. pub type aya::programs::sk_msg::SkMsgLink::Id = aya::programs::sk_msg::SkMsgLinkId
  4794. pub fn aya::programs::sk_msg::SkMsgLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4795. pub fn aya::programs::sk_msg::SkMsgLink::id(&self) -> Self::Id
  4796. impl aya::programs::links::Link for aya::programs::sk_skb::SkSkbLink
  4797. pub type aya::programs::sk_skb::SkSkbLink::Id = aya::programs::sk_skb::SkSkbLinkId
  4798. pub fn aya::programs::sk_skb::SkSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4799. pub fn aya::programs::sk_skb::SkSkbLink::id(&self) -> Self::Id
  4800. impl aya::programs::links::Link for aya::programs::sock_ops::SockOpsLink
  4801. pub type aya::programs::sock_ops::SockOpsLink::Id = aya::programs::sock_ops::SockOpsLinkId
  4802. pub fn aya::programs::sock_ops::SockOpsLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4803. pub fn aya::programs::sock_ops::SockOpsLink::id(&self) -> Self::Id
  4804. impl aya::programs::links::Link for aya::programs::socket_filter::SocketFilterLink
  4805. pub type aya::programs::socket_filter::SocketFilterLink::Id = aya::programs::socket_filter::SocketFilterLinkId
  4806. pub fn aya::programs::socket_filter::SocketFilterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4807. pub fn aya::programs::socket_filter::SocketFilterLink::id(&self) -> Self::Id
  4808. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  4809. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  4810. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4811. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  4812. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  4813. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  4814. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4815. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  4816. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  4817. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  4818. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4819. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  4820. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  4821. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  4822. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4823. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  4824. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  4825. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  4826. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4827. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  4828. pub mod aya::programs::lirc_mode2
  4829. pub struct aya::programs::lirc_mode2::LircLink
  4830. impl aya::programs::lirc_mode2::LircLink
  4831. pub fn aya::programs::lirc_mode2::LircLink::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4832. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  4833. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  4834. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4835. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  4836. impl core::cmp::Eq for aya::programs::lirc_mode2::LircLink
  4837. impl core::cmp::PartialEq for aya::programs::lirc_mode2::LircLink
  4838. pub fn aya::programs::lirc_mode2::LircLink::eq(&self, other: &Self) -> bool
  4839. impl core::fmt::Debug for aya::programs::lirc_mode2::LircLink
  4840. pub fn aya::programs::lirc_mode2::LircLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4841. impl core::hash::Hash for aya::programs::lirc_mode2::LircLink
  4842. pub fn aya::programs::lirc_mode2::LircLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4843. impl equivalent::Equivalent<aya::programs::lirc_mode2::LircLink> for aya::programs::lirc_mode2::LircLinkId
  4844. pub fn aya::programs::lirc_mode2::LircLinkId::equivalent(&self, key: &aya::programs::lirc_mode2::LircLink) -> bool
  4845. impl core::marker::Freeze for aya::programs::lirc_mode2::LircLink
  4846. impl core::marker::Send for aya::programs::lirc_mode2::LircLink
  4847. impl core::marker::Sync for aya::programs::lirc_mode2::LircLink
  4848. impl core::marker::Unpin for aya::programs::lirc_mode2::LircLink
  4849. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLink
  4850. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLink
  4851. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lirc_mode2::LircLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4852. pub fn aya::programs::lirc_mode2::LircLink::equivalent(&self, key: &K) -> bool
  4853. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::From<T>
  4854. pub fn aya::programs::lirc_mode2::LircLink::into(self) -> U
  4855. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::Into<T>
  4856. pub type aya::programs::lirc_mode2::LircLink::Error = core::convert::Infallible
  4857. pub fn aya::programs::lirc_mode2::LircLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4858. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::TryFrom<T>
  4859. pub type aya::programs::lirc_mode2::LircLink::Error = <U as core::convert::TryFrom<T>>::Error
  4860. pub fn aya::programs::lirc_mode2::LircLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4861. impl<T> core::any::Any for aya::programs::lirc_mode2::LircLink where T: 'static + ?core::marker::Sized
  4862. pub fn aya::programs::lirc_mode2::LircLink::type_id(&self) -> core::any::TypeId
  4863. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircLink where T: ?core::marker::Sized
  4864. pub fn aya::programs::lirc_mode2::LircLink::borrow(&self) -> &T
  4865. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircLink where T: ?core::marker::Sized
  4866. pub fn aya::programs::lirc_mode2::LircLink::borrow_mut(&mut self) -> &mut T
  4867. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircLink
  4868. pub fn aya::programs::lirc_mode2::LircLink::from(t: T) -> T
  4869. pub struct aya::programs::lirc_mode2::LircLinkId(_, _)
  4870. impl core::cmp::Eq for aya::programs::lirc_mode2::LircLinkId
  4871. impl core::cmp::PartialEq for aya::programs::lirc_mode2::LircLinkId
  4872. pub fn aya::programs::lirc_mode2::LircLinkId::eq(&self, other: &aya::programs::lirc_mode2::LircLinkId) -> bool
  4873. impl core::fmt::Debug for aya::programs::lirc_mode2::LircLinkId
  4874. pub fn aya::programs::lirc_mode2::LircLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4875. impl core::hash::Hash for aya::programs::lirc_mode2::LircLinkId
  4876. pub fn aya::programs::lirc_mode2::LircLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4877. impl core::marker::StructuralPartialEq for aya::programs::lirc_mode2::LircLinkId
  4878. impl equivalent::Equivalent<aya::programs::lirc_mode2::LircLink> for aya::programs::lirc_mode2::LircLinkId
  4879. pub fn aya::programs::lirc_mode2::LircLinkId::equivalent(&self, key: &aya::programs::lirc_mode2::LircLink) -> bool
  4880. impl core::marker::Freeze for aya::programs::lirc_mode2::LircLinkId
  4881. impl core::marker::Send for aya::programs::lirc_mode2::LircLinkId
  4882. impl core::marker::Sync for aya::programs::lirc_mode2::LircLinkId
  4883. impl core::marker::Unpin for aya::programs::lirc_mode2::LircLinkId
  4884. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLinkId
  4885. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLinkId
  4886. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lirc_mode2::LircLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4887. pub fn aya::programs::lirc_mode2::LircLinkId::equivalent(&self, key: &K) -> bool
  4888. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::From<T>
  4889. pub fn aya::programs::lirc_mode2::LircLinkId::into(self) -> U
  4890. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::Into<T>
  4891. pub type aya::programs::lirc_mode2::LircLinkId::Error = core::convert::Infallible
  4892. pub fn aya::programs::lirc_mode2::LircLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4893. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::TryFrom<T>
  4894. pub type aya::programs::lirc_mode2::LircLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4895. pub fn aya::programs::lirc_mode2::LircLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4896. impl<T> core::any::Any for aya::programs::lirc_mode2::LircLinkId where T: 'static + ?core::marker::Sized
  4897. pub fn aya::programs::lirc_mode2::LircLinkId::type_id(&self) -> core::any::TypeId
  4898. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircLinkId where T: ?core::marker::Sized
  4899. pub fn aya::programs::lirc_mode2::LircLinkId::borrow(&self) -> &T
  4900. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircLinkId where T: ?core::marker::Sized
  4901. pub fn aya::programs::lirc_mode2::LircLinkId::borrow_mut(&mut self) -> &mut T
  4902. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircLinkId
  4903. pub fn aya::programs::lirc_mode2::LircLinkId::from(t: T) -> T
  4904. pub struct aya::programs::lirc_mode2::LircMode2
  4905. impl aya::programs::lirc_mode2::LircMode2
  4906. pub const aya::programs::lirc_mode2::LircMode2::PROGRAM_TYPE: aya::programs::ProgramType
  4907. pub fn aya::programs::lirc_mode2::LircMode2::attach<T: std::os::fd::owned::AsFd>(&mut self, lircdev: T) -> core::result::Result<aya::programs::lirc_mode2::LircLinkId, aya::programs::ProgramError>
  4908. pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4909. pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4910. pub fn aya::programs::lirc_mode2::LircMode2::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::lirc_mode2::LircLink>, aya::programs::ProgramError>
  4911. pub fn aya::programs::lirc_mode2::LircMode2::take_link(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<aya::programs::lirc_mode2::LircLink, aya::programs::ProgramError>
  4912. impl aya::programs::lirc_mode2::LircMode2
  4913. pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4914. impl aya::programs::lirc_mode2::LircMode2
  4915. pub fn aya::programs::lirc_mode2::LircMode2::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4916. impl aya::programs::lirc_mode2::LircMode2
  4917. pub fn aya::programs::lirc_mode2::LircMode2::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  4918. impl aya::programs::lirc_mode2::LircMode2
  4919. pub fn aya::programs::lirc_mode2::LircMode2::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4920. impl aya::programs::lirc_mode2::LircMode2
  4921. pub fn aya::programs::lirc_mode2::LircMode2::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4922. pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4923. impl aya::programs::lirc_mode2::LircMode2
  4924. pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4925. impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2
  4926. pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4927. impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2
  4928. pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self)
  4929. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  4930. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  4931. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  4932. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  4933. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  4934. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  4935. impl core::marker::Freeze for aya::programs::lirc_mode2::LircMode2
  4936. impl core::marker::Send for aya::programs::lirc_mode2::LircMode2
  4937. impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2
  4938. impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2
  4939. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2
  4940. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2
  4941. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From<T>
  4942. pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U
  4943. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into<T>
  4944. pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible
  4945. pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4946. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom<T>
  4947. pub type aya::programs::lirc_mode2::LircMode2::Error = <U as core::convert::TryFrom<T>>::Error
  4948. pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4949. impl<T> core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + ?core::marker::Sized
  4950. pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId
  4951. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  4952. pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T
  4953. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  4954. pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T
  4955. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircMode2
  4956. pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T
  4957. pub mod aya::programs::lsm
  4958. pub struct aya::programs::lsm::Lsm
  4959. impl aya::programs::lsm::Lsm
  4960. pub const aya::programs::lsm::Lsm::PROGRAM_TYPE: aya::programs::ProgramType
  4961. pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result<aya::programs::lsm::LsmLinkId, aya::programs::ProgramError>
  4962. pub fn aya::programs::lsm::Lsm::load(&mut self, lsm_hook_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  4963. impl aya::programs::lsm::Lsm
  4964. pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4965. pub fn aya::programs::lsm::Lsm::take_link(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<aya::programs::lsm::LsmLink, aya::programs::ProgramError>
  4966. impl aya::programs::lsm::Lsm
  4967. pub fn aya::programs::lsm::Lsm::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4968. impl aya::programs::lsm::Lsm
  4969. pub fn aya::programs::lsm::Lsm::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4970. impl aya::programs::lsm::Lsm
  4971. pub fn aya::programs::lsm::Lsm::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  4972. impl aya::programs::lsm::Lsm
  4973. pub fn aya::programs::lsm::Lsm::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4974. impl aya::programs::lsm::Lsm
  4975. pub fn aya::programs::lsm::Lsm::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4976. pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4977. impl aya::programs::lsm::Lsm
  4978. pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4979. impl core::fmt::Debug for aya::programs::lsm::Lsm
  4980. pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4981. impl core::ops::drop::Drop for aya::programs::lsm::Lsm
  4982. pub fn aya::programs::lsm::Lsm::drop(&mut self)
  4983. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  4984. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  4985. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  4986. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  4987. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  4988. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  4989. impl core::marker::Freeze for aya::programs::lsm::Lsm
  4990. impl core::marker::Send for aya::programs::lsm::Lsm
  4991. impl core::marker::Sync for aya::programs::lsm::Lsm
  4992. impl core::marker::Unpin for aya::programs::lsm::Lsm
  4993. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm
  4994. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm
  4995. impl<T, U> core::convert::Into<U> for aya::programs::lsm::Lsm where U: core::convert::From<T>
  4996. pub fn aya::programs::lsm::Lsm::into(self) -> U
  4997. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::Lsm where U: core::convert::Into<T>
  4998. pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible
  4999. pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5000. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::Lsm where U: core::convert::TryFrom<T>
  5001. pub type aya::programs::lsm::Lsm::Error = <U as core::convert::TryFrom<T>>::Error
  5002. pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5003. impl<T> core::any::Any for aya::programs::lsm::Lsm where T: 'static + ?core::marker::Sized
  5004. pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId
  5005. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  5006. pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T
  5007. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  5008. pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T
  5009. impl<T> core::convert::From<T> for aya::programs::lsm::Lsm
  5010. pub fn aya::programs::lsm::Lsm::from(t: T) -> T
  5011. pub struct aya::programs::lsm::LsmLink(_)
  5012. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  5013. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  5014. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5015. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  5016. impl core::cmp::Eq for aya::programs::lsm::LsmLink
  5017. impl core::cmp::PartialEq for aya::programs::lsm::LsmLink
  5018. pub fn aya::programs::lsm::LsmLink::eq(&self, other: &Self) -> bool
  5019. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::lsm::LsmLink
  5020. pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink
  5021. impl core::convert::From<aya::programs::lsm::LsmLink> for aya::programs::links::FdLink
  5022. pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink
  5023. impl core::fmt::Debug for aya::programs::lsm::LsmLink
  5024. pub fn aya::programs::lsm::LsmLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5025. impl core::hash::Hash for aya::programs::lsm::LsmLink
  5026. pub fn aya::programs::lsm::LsmLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5027. impl core::ops::drop::Drop for aya::programs::lsm::LsmLink
  5028. pub fn aya::programs::lsm::LsmLink::drop(&mut self)
  5029. impl equivalent::Equivalent<aya::programs::lsm::LsmLink> for aya::programs::lsm::LsmLinkId
  5030. pub fn aya::programs::lsm::LsmLinkId::equivalent(&self, key: &aya::programs::lsm::LsmLink) -> bool
  5031. impl core::marker::Freeze for aya::programs::lsm::LsmLink
  5032. impl core::marker::Send for aya::programs::lsm::LsmLink
  5033. impl core::marker::Sync for aya::programs::lsm::LsmLink
  5034. impl core::marker::Unpin for aya::programs::lsm::LsmLink
  5035. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLink
  5036. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLink
  5037. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lsm::LsmLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5038. pub fn aya::programs::lsm::LsmLink::equivalent(&self, key: &K) -> bool
  5039. impl<T, U> core::convert::Into<U> for aya::programs::lsm::LsmLink where U: core::convert::From<T>
  5040. pub fn aya::programs::lsm::LsmLink::into(self) -> U
  5041. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::LsmLink where U: core::convert::Into<T>
  5042. pub type aya::programs::lsm::LsmLink::Error = core::convert::Infallible
  5043. pub fn aya::programs::lsm::LsmLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5044. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::LsmLink where U: core::convert::TryFrom<T>
  5045. pub type aya::programs::lsm::LsmLink::Error = <U as core::convert::TryFrom<T>>::Error
  5046. pub fn aya::programs::lsm::LsmLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5047. impl<T> core::any::Any for aya::programs::lsm::LsmLink where T: 'static + ?core::marker::Sized
  5048. pub fn aya::programs::lsm::LsmLink::type_id(&self) -> core::any::TypeId
  5049. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::LsmLink where T: ?core::marker::Sized
  5050. pub fn aya::programs::lsm::LsmLink::borrow(&self) -> &T
  5051. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::LsmLink where T: ?core::marker::Sized
  5052. pub fn aya::programs::lsm::LsmLink::borrow_mut(&mut self) -> &mut T
  5053. impl<T> core::convert::From<T> for aya::programs::lsm::LsmLink
  5054. pub fn aya::programs::lsm::LsmLink::from(t: T) -> T
  5055. pub struct aya::programs::lsm::LsmLinkId(_)
  5056. impl core::cmp::Eq for aya::programs::lsm::LsmLinkId
  5057. impl core::cmp::PartialEq for aya::programs::lsm::LsmLinkId
  5058. pub fn aya::programs::lsm::LsmLinkId::eq(&self, other: &aya::programs::lsm::LsmLinkId) -> bool
  5059. impl core::fmt::Debug for aya::programs::lsm::LsmLinkId
  5060. pub fn aya::programs::lsm::LsmLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5061. impl core::hash::Hash for aya::programs::lsm::LsmLinkId
  5062. pub fn aya::programs::lsm::LsmLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5063. impl core::marker::StructuralPartialEq for aya::programs::lsm::LsmLinkId
  5064. impl equivalent::Equivalent<aya::programs::lsm::LsmLink> for aya::programs::lsm::LsmLinkId
  5065. pub fn aya::programs::lsm::LsmLinkId::equivalent(&self, key: &aya::programs::lsm::LsmLink) -> bool
  5066. impl core::marker::Freeze for aya::programs::lsm::LsmLinkId
  5067. impl core::marker::Send for aya::programs::lsm::LsmLinkId
  5068. impl core::marker::Sync for aya::programs::lsm::LsmLinkId
  5069. impl core::marker::Unpin for aya::programs::lsm::LsmLinkId
  5070. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLinkId
  5071. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLinkId
  5072. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lsm::LsmLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5073. pub fn aya::programs::lsm::LsmLinkId::equivalent(&self, key: &K) -> bool
  5074. impl<T, U> core::convert::Into<U> for aya::programs::lsm::LsmLinkId where U: core::convert::From<T>
  5075. pub fn aya::programs::lsm::LsmLinkId::into(self) -> U
  5076. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::LsmLinkId where U: core::convert::Into<T>
  5077. pub type aya::programs::lsm::LsmLinkId::Error = core::convert::Infallible
  5078. pub fn aya::programs::lsm::LsmLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5079. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::LsmLinkId where U: core::convert::TryFrom<T>
  5080. pub type aya::programs::lsm::LsmLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5081. pub fn aya::programs::lsm::LsmLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5082. impl<T> core::any::Any for aya::programs::lsm::LsmLinkId where T: 'static + ?core::marker::Sized
  5083. pub fn aya::programs::lsm::LsmLinkId::type_id(&self) -> core::any::TypeId
  5084. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::LsmLinkId where T: ?core::marker::Sized
  5085. pub fn aya::programs::lsm::LsmLinkId::borrow(&self) -> &T
  5086. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::LsmLinkId where T: ?core::marker::Sized
  5087. pub fn aya::programs::lsm::LsmLinkId::borrow_mut(&mut self) -> &mut T
  5088. impl<T> core::convert::From<T> for aya::programs::lsm::LsmLinkId
  5089. pub fn aya::programs::lsm::LsmLinkId::from(t: T) -> T
  5090. pub mod aya::programs::perf_attach
  5091. pub struct aya::programs::perf_attach::PerfLink
  5092. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  5093. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  5094. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5095. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  5096. impl core::cmp::Eq for aya::programs::perf_attach::PerfLink
  5097. impl core::cmp::PartialEq for aya::programs::perf_attach::PerfLink
  5098. pub fn aya::programs::perf_attach::PerfLink::eq(&self, other: &Self) -> bool
  5099. impl core::fmt::Debug for aya::programs::perf_attach::PerfLink
  5100. pub fn aya::programs::perf_attach::PerfLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5101. impl core::hash::Hash for aya::programs::perf_attach::PerfLink
  5102. pub fn aya::programs::perf_attach::PerfLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5103. impl equivalent::Equivalent<aya::programs::perf_attach::PerfLink> for aya::programs::perf_attach::PerfLinkId
  5104. pub fn aya::programs::perf_attach::PerfLinkId::equivalent(&self, key: &aya::programs::perf_attach::PerfLink) -> bool
  5105. impl core::marker::Freeze for aya::programs::perf_attach::PerfLink
  5106. impl core::marker::Send for aya::programs::perf_attach::PerfLink
  5107. impl core::marker::Sync for aya::programs::perf_attach::PerfLink
  5108. impl core::marker::Unpin for aya::programs::perf_attach::PerfLink
  5109. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLink
  5110. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLink
  5111. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_attach::PerfLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5112. pub fn aya::programs::perf_attach::PerfLink::equivalent(&self, key: &K) -> bool
  5113. impl<T, U> core::convert::Into<U> for aya::programs::perf_attach::PerfLink where U: core::convert::From<T>
  5114. pub fn aya::programs::perf_attach::PerfLink::into(self) -> U
  5115. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_attach::PerfLink where U: core::convert::Into<T>
  5116. pub type aya::programs::perf_attach::PerfLink::Error = core::convert::Infallible
  5117. pub fn aya::programs::perf_attach::PerfLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5118. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_attach::PerfLink where U: core::convert::TryFrom<T>
  5119. pub type aya::programs::perf_attach::PerfLink::Error = <U as core::convert::TryFrom<T>>::Error
  5120. pub fn aya::programs::perf_attach::PerfLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5121. impl<T> core::any::Any for aya::programs::perf_attach::PerfLink where T: 'static + ?core::marker::Sized
  5122. pub fn aya::programs::perf_attach::PerfLink::type_id(&self) -> core::any::TypeId
  5123. impl<T> core::borrow::Borrow<T> for aya::programs::perf_attach::PerfLink where T: ?core::marker::Sized
  5124. pub fn aya::programs::perf_attach::PerfLink::borrow(&self) -> &T
  5125. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_attach::PerfLink where T: ?core::marker::Sized
  5126. pub fn aya::programs::perf_attach::PerfLink::borrow_mut(&mut self) -> &mut T
  5127. impl<T> core::convert::From<T> for aya::programs::perf_attach::PerfLink
  5128. pub fn aya::programs::perf_attach::PerfLink::from(t: T) -> T
  5129. pub struct aya::programs::perf_attach::PerfLinkId(_)
  5130. impl core::cmp::Eq for aya::programs::perf_attach::PerfLinkId
  5131. impl core::cmp::PartialEq for aya::programs::perf_attach::PerfLinkId
  5132. pub fn aya::programs::perf_attach::PerfLinkId::eq(&self, other: &aya::programs::perf_attach::PerfLinkId) -> bool
  5133. impl core::fmt::Debug for aya::programs::perf_attach::PerfLinkId
  5134. pub fn aya::programs::perf_attach::PerfLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5135. impl core::hash::Hash for aya::programs::perf_attach::PerfLinkId
  5136. pub fn aya::programs::perf_attach::PerfLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5137. impl core::marker::StructuralPartialEq for aya::programs::perf_attach::PerfLinkId
  5138. impl equivalent::Equivalent<aya::programs::perf_attach::PerfLink> for aya::programs::perf_attach::PerfLinkId
  5139. pub fn aya::programs::perf_attach::PerfLinkId::equivalent(&self, key: &aya::programs::perf_attach::PerfLink) -> bool
  5140. impl core::marker::Freeze for aya::programs::perf_attach::PerfLinkId
  5141. impl core::marker::Send for aya::programs::perf_attach::PerfLinkId
  5142. impl core::marker::Sync for aya::programs::perf_attach::PerfLinkId
  5143. impl core::marker::Unpin for aya::programs::perf_attach::PerfLinkId
  5144. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLinkId
  5145. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLinkId
  5146. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_attach::PerfLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5147. pub fn aya::programs::perf_attach::PerfLinkId::equivalent(&self, key: &K) -> bool
  5148. impl<T, U> core::convert::Into<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::From<T>
  5149. pub fn aya::programs::perf_attach::PerfLinkId::into(self) -> U
  5150. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::Into<T>
  5151. pub type aya::programs::perf_attach::PerfLinkId::Error = core::convert::Infallible
  5152. pub fn aya::programs::perf_attach::PerfLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5153. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::TryFrom<T>
  5154. pub type aya::programs::perf_attach::PerfLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5155. pub fn aya::programs::perf_attach::PerfLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5156. impl<T> core::any::Any for aya::programs::perf_attach::PerfLinkId where T: 'static + ?core::marker::Sized
  5157. pub fn aya::programs::perf_attach::PerfLinkId::type_id(&self) -> core::any::TypeId
  5158. impl<T> core::borrow::Borrow<T> for aya::programs::perf_attach::PerfLinkId where T: ?core::marker::Sized
  5159. pub fn aya::programs::perf_attach::PerfLinkId::borrow(&self) -> &T
  5160. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_attach::PerfLinkId where T: ?core::marker::Sized
  5161. pub fn aya::programs::perf_attach::PerfLinkId::borrow_mut(&mut self) -> &mut T
  5162. impl<T> core::convert::From<T> for aya::programs::perf_attach::PerfLinkId
  5163. pub fn aya::programs::perf_attach::PerfLinkId::from(t: T) -> T
  5164. pub mod aya::programs::perf_event
  5165. pub use aya::programs::perf_event::perf_hw_cache_id
  5166. pub use aya::programs::perf_event::perf_hw_cache_op_id
  5167. pub use aya::programs::perf_event::perf_hw_cache_op_result_id
  5168. pub use aya::programs::perf_event::perf_hw_id
  5169. pub use aya::programs::perf_event::perf_sw_ids
  5170. pub enum aya::programs::perf_event::PerfEventScope
  5171. pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu
  5172. pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu::cpu: u32
  5173. pub aya::programs::perf_event::PerfEventScope::CallingProcessAnyCpu
  5174. pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu
  5175. pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu::cpu: u32
  5176. pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu
  5177. pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu::pid: u32
  5178. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu
  5179. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::cpu: u32
  5180. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::pid: u32
  5181. impl core::clone::Clone for aya::programs::perf_event::PerfEventScope
  5182. pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope
  5183. impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope
  5184. pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5185. impl core::marker::Freeze for aya::programs::perf_event::PerfEventScope
  5186. impl core::marker::Send for aya::programs::perf_event::PerfEventScope
  5187. impl core::marker::Sync for aya::programs::perf_event::PerfEventScope
  5188. impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope
  5189. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope
  5190. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope
  5191. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::From<T>
  5192. pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U
  5193. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::Into<T>
  5194. pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible
  5195. pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5196. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom<T>
  5197. pub type aya::programs::perf_event::PerfEventScope::Error = <U as core::convert::TryFrom<T>>::Error
  5198. pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5199. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  5200. pub type aya::programs::perf_event::PerfEventScope::Owned = T
  5201. pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T)
  5202. pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T
  5203. impl<T> core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + ?core::marker::Sized
  5204. pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId
  5205. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  5206. pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T
  5207. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  5208. pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T
  5209. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  5210. pub unsafe fn aya::programs::perf_event::PerfEventScope::clone_to_uninit(&self, dest: *mut u8)
  5211. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventScope
  5212. pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T
  5213. #[repr(u32)] pub enum aya::programs::perf_event::PerfTypeId
  5214. pub aya::programs::perf_event::PerfTypeId::Breakpoint = 5
  5215. pub aya::programs::perf_event::PerfTypeId::Hardware = 0
  5216. pub aya::programs::perf_event::PerfTypeId::HwCache = 3
  5217. pub aya::programs::perf_event::PerfTypeId::Raw = 4
  5218. pub aya::programs::perf_event::PerfTypeId::Software = 1
  5219. pub aya::programs::perf_event::PerfTypeId::TracePoint = 2
  5220. impl core::clone::Clone for aya::programs::perf_event::PerfTypeId
  5221. pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId
  5222. impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId
  5223. pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5224. impl core::marker::Freeze for aya::programs::perf_event::PerfTypeId
  5225. impl core::marker::Send for aya::programs::perf_event::PerfTypeId
  5226. impl core::marker::Sync for aya::programs::perf_event::PerfTypeId
  5227. impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId
  5228. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId
  5229. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId
  5230. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::From<T>
  5231. pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U
  5232. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::Into<T>
  5233. pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible
  5234. pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5235. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom<T>
  5236. pub type aya::programs::perf_event::PerfTypeId::Error = <U as core::convert::TryFrom<T>>::Error
  5237. pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5238. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  5239. pub type aya::programs::perf_event::PerfTypeId::Owned = T
  5240. pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T)
  5241. pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T
  5242. impl<T> core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + ?core::marker::Sized
  5243. pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId
  5244. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  5245. pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T
  5246. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  5247. pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T
  5248. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  5249. pub unsafe fn aya::programs::perf_event::PerfTypeId::clone_to_uninit(&self, dest: *mut u8)
  5250. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfTypeId
  5251. pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T
  5252. pub enum aya::programs::perf_event::SamplePolicy
  5253. pub aya::programs::perf_event::SamplePolicy::Frequency(u64)
  5254. pub aya::programs::perf_event::SamplePolicy::Period(u64)
  5255. impl core::clone::Clone for aya::programs::perf_event::SamplePolicy
  5256. pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy
  5257. impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy
  5258. pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5259. impl core::marker::Freeze for aya::programs::perf_event::SamplePolicy
  5260. impl core::marker::Send for aya::programs::perf_event::SamplePolicy
  5261. impl core::marker::Sync for aya::programs::perf_event::SamplePolicy
  5262. impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy
  5263. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy
  5264. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy
  5265. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::From<T>
  5266. pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U
  5267. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::Into<T>
  5268. pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible
  5269. pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5270. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom<T>
  5271. pub type aya::programs::perf_event::SamplePolicy::Error = <U as core::convert::TryFrom<T>>::Error
  5272. pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5273. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  5274. pub type aya::programs::perf_event::SamplePolicy::Owned = T
  5275. pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T)
  5276. pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T
  5277. impl<T> core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + ?core::marker::Sized
  5278. pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId
  5279. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  5280. pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T
  5281. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  5282. pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T
  5283. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  5284. pub unsafe fn aya::programs::perf_event::SamplePolicy::clone_to_uninit(&self, dest: *mut u8)
  5285. impl<T> core::convert::From<T> for aya::programs::perf_event::SamplePolicy
  5286. pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T
  5287. pub struct aya::programs::perf_event::PerfEvent
  5288. impl aya::programs::perf_event::PerfEvent
  5289. pub const aya::programs::perf_event::PerfEvent::PROGRAM_TYPE: aya::programs::ProgramType
  5290. pub fn aya::programs::perf_event::PerfEvent::attach(&mut self, perf_type: aya::programs::perf_event::PerfTypeId, config: u64, scope: aya::programs::perf_event::PerfEventScope, sample_policy: aya::programs::perf_event::SamplePolicy, inherit: bool) -> core::result::Result<aya::programs::perf_event::PerfEventLinkId, aya::programs::ProgramError>
  5291. pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5292. impl aya::programs::perf_event::PerfEvent
  5293. pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5294. pub fn aya::programs::perf_event::PerfEvent::take_link(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<aya::programs::perf_event::PerfEventLink, aya::programs::ProgramError>
  5295. impl aya::programs::perf_event::PerfEvent
  5296. pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5297. impl aya::programs::perf_event::PerfEvent
  5298. pub fn aya::programs::perf_event::PerfEvent::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5299. impl aya::programs::perf_event::PerfEvent
  5300. pub fn aya::programs::perf_event::PerfEvent::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5301. impl aya::programs::perf_event::PerfEvent
  5302. pub fn aya::programs::perf_event::PerfEvent::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5303. impl aya::programs::perf_event::PerfEvent
  5304. pub fn aya::programs::perf_event::PerfEvent::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5305. pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5306. impl aya::programs::perf_event::PerfEvent
  5307. pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5308. impl core::fmt::Debug for aya::programs::perf_event::PerfEvent
  5309. pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5310. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent
  5311. pub fn aya::programs::perf_event::PerfEvent::drop(&mut self)
  5312. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  5313. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  5314. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  5315. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  5316. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  5317. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  5318. impl core::marker::Freeze for aya::programs::perf_event::PerfEvent
  5319. impl core::marker::Send for aya::programs::perf_event::PerfEvent
  5320. impl core::marker::Sync for aya::programs::perf_event::PerfEvent
  5321. impl core::marker::Unpin for aya::programs::perf_event::PerfEvent
  5322. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent
  5323. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent
  5324. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEvent where U: core::convert::From<T>
  5325. pub fn aya::programs::perf_event::PerfEvent::into(self) -> U
  5326. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEvent where U: core::convert::Into<T>
  5327. pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible
  5328. pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5329. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom<T>
  5330. pub type aya::programs::perf_event::PerfEvent::Error = <U as core::convert::TryFrom<T>>::Error
  5331. pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5332. impl<T> core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + ?core::marker::Sized
  5333. pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId
  5334. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  5335. pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T
  5336. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  5337. pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T
  5338. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEvent
  5339. pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T
  5340. pub struct aya::programs::perf_event::PerfEventLink(_)
  5341. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  5342. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  5343. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5344. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  5345. impl core::cmp::Eq for aya::programs::perf_event::PerfEventLink
  5346. impl core::cmp::PartialEq for aya::programs::perf_event::PerfEventLink
  5347. pub fn aya::programs::perf_event::PerfEventLink::eq(&self, other: &Self) -> bool
  5348. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::perf_event::PerfEventLink
  5349. pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError
  5350. pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  5351. impl core::convert::TryFrom<aya::programs::perf_event::PerfEventLink> for aya::programs::links::FdLink
  5352. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  5353. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result<Self, Self::Error>
  5354. impl core::fmt::Debug for aya::programs::perf_event::PerfEventLink
  5355. pub fn aya::programs::perf_event::PerfEventLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5356. impl core::hash::Hash for aya::programs::perf_event::PerfEventLink
  5357. pub fn aya::programs::perf_event::PerfEventLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5358. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEventLink
  5359. pub fn aya::programs::perf_event::PerfEventLink::drop(&mut self)
  5360. impl equivalent::Equivalent<aya::programs::perf_event::PerfEventLink> for aya::programs::perf_event::PerfEventLinkId
  5361. pub fn aya::programs::perf_event::PerfEventLinkId::equivalent(&self, key: &aya::programs::perf_event::PerfEventLink) -> bool
  5362. impl core::marker::Freeze for aya::programs::perf_event::PerfEventLink
  5363. impl core::marker::Send for aya::programs::perf_event::PerfEventLink
  5364. impl core::marker::Sync for aya::programs::perf_event::PerfEventLink
  5365. impl core::marker::Unpin for aya::programs::perf_event::PerfEventLink
  5366. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLink
  5367. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLink
  5368. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_event::PerfEventLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5369. pub fn aya::programs::perf_event::PerfEventLink::equivalent(&self, key: &K) -> bool
  5370. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::From<T>
  5371. pub fn aya::programs::perf_event::PerfEventLink::into(self) -> U
  5372. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::Into<T>
  5373. pub type aya::programs::perf_event::PerfEventLink::Error = core::convert::Infallible
  5374. pub fn aya::programs::perf_event::PerfEventLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5375. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::TryFrom<T>
  5376. pub type aya::programs::perf_event::PerfEventLink::Error = <U as core::convert::TryFrom<T>>::Error
  5377. pub fn aya::programs::perf_event::PerfEventLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5378. impl<T> core::any::Any for aya::programs::perf_event::PerfEventLink where T: 'static + ?core::marker::Sized
  5379. pub fn aya::programs::perf_event::PerfEventLink::type_id(&self) -> core::any::TypeId
  5380. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventLink where T: ?core::marker::Sized
  5381. pub fn aya::programs::perf_event::PerfEventLink::borrow(&self) -> &T
  5382. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventLink where T: ?core::marker::Sized
  5383. pub fn aya::programs::perf_event::PerfEventLink::borrow_mut(&mut self) -> &mut T
  5384. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventLink
  5385. pub fn aya::programs::perf_event::PerfEventLink::from(t: T) -> T
  5386. pub struct aya::programs::perf_event::PerfEventLinkId(_)
  5387. impl core::cmp::Eq for aya::programs::perf_event::PerfEventLinkId
  5388. impl core::cmp::PartialEq for aya::programs::perf_event::PerfEventLinkId
  5389. pub fn aya::programs::perf_event::PerfEventLinkId::eq(&self, other: &aya::programs::perf_event::PerfEventLinkId) -> bool
  5390. impl core::fmt::Debug for aya::programs::perf_event::PerfEventLinkId
  5391. pub fn aya::programs::perf_event::PerfEventLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5392. impl core::hash::Hash for aya::programs::perf_event::PerfEventLinkId
  5393. pub fn aya::programs::perf_event::PerfEventLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5394. impl core::marker::StructuralPartialEq for aya::programs::perf_event::PerfEventLinkId
  5395. impl equivalent::Equivalent<aya::programs::perf_event::PerfEventLink> for aya::programs::perf_event::PerfEventLinkId
  5396. pub fn aya::programs::perf_event::PerfEventLinkId::equivalent(&self, key: &aya::programs::perf_event::PerfEventLink) -> bool
  5397. impl core::marker::Freeze for aya::programs::perf_event::PerfEventLinkId
  5398. impl core::marker::Send for aya::programs::perf_event::PerfEventLinkId
  5399. impl core::marker::Sync for aya::programs::perf_event::PerfEventLinkId
  5400. impl core::marker::Unpin for aya::programs::perf_event::PerfEventLinkId
  5401. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLinkId
  5402. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLinkId
  5403. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_event::PerfEventLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5404. pub fn aya::programs::perf_event::PerfEventLinkId::equivalent(&self, key: &K) -> bool
  5405. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::From<T>
  5406. pub fn aya::programs::perf_event::PerfEventLinkId::into(self) -> U
  5407. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::Into<T>
  5408. pub type aya::programs::perf_event::PerfEventLinkId::Error = core::convert::Infallible
  5409. pub fn aya::programs::perf_event::PerfEventLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5410. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::TryFrom<T>
  5411. pub type aya::programs::perf_event::PerfEventLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5412. pub fn aya::programs::perf_event::PerfEventLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5413. impl<T> core::any::Any for aya::programs::perf_event::PerfEventLinkId where T: 'static + ?core::marker::Sized
  5414. pub fn aya::programs::perf_event::PerfEventLinkId::type_id(&self) -> core::any::TypeId
  5415. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventLinkId where T: ?core::marker::Sized
  5416. pub fn aya::programs::perf_event::PerfEventLinkId::borrow(&self) -> &T
  5417. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventLinkId where T: ?core::marker::Sized
  5418. pub fn aya::programs::perf_event::PerfEventLinkId::borrow_mut(&mut self) -> &mut T
  5419. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventLinkId
  5420. pub fn aya::programs::perf_event::PerfEventLinkId::from(t: T) -> T
  5421. pub mod aya::programs::raw_trace_point
  5422. pub struct aya::programs::raw_trace_point::RawTracePoint
  5423. impl aya::programs::raw_trace_point::RawTracePoint
  5424. pub const aya::programs::raw_trace_point::RawTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  5425. pub fn aya::programs::raw_trace_point::RawTracePoint::attach(&mut self, tp_name: &str) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLinkId, aya::programs::ProgramError>
  5426. pub fn aya::programs::raw_trace_point::RawTracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5427. impl aya::programs::raw_trace_point::RawTracePoint
  5428. pub fn aya::programs::raw_trace_point::RawTracePoint::detach(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5429. pub fn aya::programs::raw_trace_point::RawTracePoint::take_link(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLink, aya::programs::ProgramError>
  5430. impl aya::programs::raw_trace_point::RawTracePoint
  5431. pub fn aya::programs::raw_trace_point::RawTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5432. impl aya::programs::raw_trace_point::RawTracePoint
  5433. pub fn aya::programs::raw_trace_point::RawTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5434. impl aya::programs::raw_trace_point::RawTracePoint
  5435. pub fn aya::programs::raw_trace_point::RawTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5436. impl aya::programs::raw_trace_point::RawTracePoint
  5437. pub fn aya::programs::raw_trace_point::RawTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5438. impl aya::programs::raw_trace_point::RawTracePoint
  5439. pub fn aya::programs::raw_trace_point::RawTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5440. pub fn aya::programs::raw_trace_point::RawTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5441. impl aya::programs::raw_trace_point::RawTracePoint
  5442. pub fn aya::programs::raw_trace_point::RawTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5443. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePoint
  5444. pub fn aya::programs::raw_trace_point::RawTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5445. impl core::ops::drop::Drop for aya::programs::raw_trace_point::RawTracePoint
  5446. pub fn aya::programs::raw_trace_point::RawTracePoint::drop(&mut self)
  5447. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::raw_trace_point::RawTracePoint
  5448. pub type &'a aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  5449. pub fn &'a aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  5450. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::raw_trace_point::RawTracePoint
  5451. pub type &'a mut aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  5452. pub fn &'a mut aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  5453. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePoint
  5454. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePoint
  5455. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePoint
  5456. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePoint
  5457. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  5458. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  5459. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::From<T>
  5460. pub fn aya::programs::raw_trace_point::RawTracePoint::into(self) -> U
  5461. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::Into<T>
  5462. pub type aya::programs::raw_trace_point::RawTracePoint::Error = core::convert::Infallible
  5463. pub fn aya::programs::raw_trace_point::RawTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5464. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::TryFrom<T>
  5465. pub type aya::programs::raw_trace_point::RawTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  5466. pub fn aya::programs::raw_trace_point::RawTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5467. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePoint where T: 'static + ?core::marker::Sized
  5468. pub fn aya::programs::raw_trace_point::RawTracePoint::type_id(&self) -> core::any::TypeId
  5469. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  5470. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow(&self) -> &T
  5471. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  5472. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow_mut(&mut self) -> &mut T
  5473. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePoint
  5474. pub fn aya::programs::raw_trace_point::RawTracePoint::from(t: T) -> T
  5475. pub struct aya::programs::raw_trace_point::RawTracePointLink(_)
  5476. impl aya::programs::links::Link for aya::programs::raw_trace_point::RawTracePointLink
  5477. pub type aya::programs::raw_trace_point::RawTracePointLink::Id = aya::programs::raw_trace_point::RawTracePointLinkId
  5478. pub fn aya::programs::raw_trace_point::RawTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5479. pub fn aya::programs::raw_trace_point::RawTracePointLink::id(&self) -> Self::Id
  5480. impl core::cmp::Eq for aya::programs::raw_trace_point::RawTracePointLink
  5481. impl core::cmp::PartialEq for aya::programs::raw_trace_point::RawTracePointLink
  5482. pub fn aya::programs::raw_trace_point::RawTracePointLink::eq(&self, other: &Self) -> bool
  5483. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::raw_trace_point::RawTracePointLink
  5484. pub fn aya::programs::raw_trace_point::RawTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::raw_trace_point::RawTracePointLink
  5485. impl core::convert::From<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::links::FdLink
  5486. pub fn aya::programs::links::FdLink::from(w: aya::programs::raw_trace_point::RawTracePointLink) -> aya::programs::links::FdLink
  5487. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePointLink
  5488. pub fn aya::programs::raw_trace_point::RawTracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5489. impl core::hash::Hash for aya::programs::raw_trace_point::RawTracePointLink
  5490. pub fn aya::programs::raw_trace_point::RawTracePointLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5491. impl core::ops::drop::Drop for aya::programs::raw_trace_point::RawTracePointLink
  5492. pub fn aya::programs::raw_trace_point::RawTracePointLink::drop(&mut self)
  5493. impl equivalent::Equivalent<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::raw_trace_point::RawTracePointLinkId
  5494. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::equivalent(&self, key: &aya::programs::raw_trace_point::RawTracePointLink) -> bool
  5495. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePointLink
  5496. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePointLink
  5497. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePointLink
  5498. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePointLink
  5499. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePointLink
  5500. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePointLink
  5501. impl<Q, K> equivalent::Equivalent<K> for aya::programs::raw_trace_point::RawTracePointLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5502. pub fn aya::programs::raw_trace_point::RawTracePointLink::equivalent(&self, key: &K) -> bool
  5503. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePointLink where U: core::convert::From<T>
  5504. pub fn aya::programs::raw_trace_point::RawTracePointLink::into(self) -> U
  5505. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePointLink where U: core::convert::Into<T>
  5506. pub type aya::programs::raw_trace_point::RawTracePointLink::Error = core::convert::Infallible
  5507. pub fn aya::programs::raw_trace_point::RawTracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5508. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePointLink where U: core::convert::TryFrom<T>
  5509. pub type aya::programs::raw_trace_point::RawTracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  5510. pub fn aya::programs::raw_trace_point::RawTracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5511. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePointLink where T: 'static + ?core::marker::Sized
  5512. pub fn aya::programs::raw_trace_point::RawTracePointLink::type_id(&self) -> core::any::TypeId
  5513. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePointLink where T: ?core::marker::Sized
  5514. pub fn aya::programs::raw_trace_point::RawTracePointLink::borrow(&self) -> &T
  5515. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePointLink where T: ?core::marker::Sized
  5516. pub fn aya::programs::raw_trace_point::RawTracePointLink::borrow_mut(&mut self) -> &mut T
  5517. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePointLink
  5518. pub fn aya::programs::raw_trace_point::RawTracePointLink::from(t: T) -> T
  5519. pub struct aya::programs::raw_trace_point::RawTracePointLinkId(_)
  5520. impl core::cmp::Eq for aya::programs::raw_trace_point::RawTracePointLinkId
  5521. impl core::cmp::PartialEq for aya::programs::raw_trace_point::RawTracePointLinkId
  5522. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::eq(&self, other: &aya::programs::raw_trace_point::RawTracePointLinkId) -> bool
  5523. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePointLinkId
  5524. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5525. impl core::hash::Hash for aya::programs::raw_trace_point::RawTracePointLinkId
  5526. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5527. impl core::marker::StructuralPartialEq for aya::programs::raw_trace_point::RawTracePointLinkId
  5528. impl equivalent::Equivalent<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::raw_trace_point::RawTracePointLinkId
  5529. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::equivalent(&self, key: &aya::programs::raw_trace_point::RawTracePointLink) -> bool
  5530. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePointLinkId
  5531. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePointLinkId
  5532. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePointLinkId
  5533. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePointLinkId
  5534. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePointLinkId
  5535. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePointLinkId
  5536. impl<Q, K> equivalent::Equivalent<K> for aya::programs::raw_trace_point::RawTracePointLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5537. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::equivalent(&self, key: &K) -> bool
  5538. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePointLinkId where U: core::convert::From<T>
  5539. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::into(self) -> U
  5540. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePointLinkId where U: core::convert::Into<T>
  5541. pub type aya::programs::raw_trace_point::RawTracePointLinkId::Error = core::convert::Infallible
  5542. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5543. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePointLinkId where U: core::convert::TryFrom<T>
  5544. pub type aya::programs::raw_trace_point::RawTracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5545. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5546. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePointLinkId where T: 'static + ?core::marker::Sized
  5547. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::type_id(&self) -> core::any::TypeId
  5548. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePointLinkId where T: ?core::marker::Sized
  5549. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::borrow(&self) -> &T
  5550. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePointLinkId where T: ?core::marker::Sized
  5551. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::borrow_mut(&mut self) -> &mut T
  5552. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePointLinkId
  5553. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::from(t: T) -> T
  5554. pub mod aya::programs::sk_lookup
  5555. pub struct aya::programs::sk_lookup::SkLookup
  5556. impl aya::programs::sk_lookup::SkLookup
  5557. pub const aya::programs::sk_lookup::SkLookup::PROGRAM_TYPE: aya::programs::ProgramType
  5558. pub fn aya::programs::sk_lookup::SkLookup::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::sk_lookup::SkLookupLinkId, aya::programs::ProgramError>
  5559. pub fn aya::programs::sk_lookup::SkLookup::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5560. impl aya::programs::sk_lookup::SkLookup
  5561. pub fn aya::programs::sk_lookup::SkLookup::detach(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5562. pub fn aya::programs::sk_lookup::SkLookup::take_link(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<aya::programs::sk_lookup::SkLookupLink, aya::programs::ProgramError>
  5563. impl aya::programs::sk_lookup::SkLookup
  5564. pub fn aya::programs::sk_lookup::SkLookup::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5565. impl aya::programs::sk_lookup::SkLookup
  5566. pub fn aya::programs::sk_lookup::SkLookup::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5567. impl aya::programs::sk_lookup::SkLookup
  5568. pub fn aya::programs::sk_lookup::SkLookup::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5569. impl aya::programs::sk_lookup::SkLookup
  5570. pub fn aya::programs::sk_lookup::SkLookup::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5571. impl aya::programs::sk_lookup::SkLookup
  5572. pub fn aya::programs::sk_lookup::SkLookup::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5573. pub fn aya::programs::sk_lookup::SkLookup::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5574. impl aya::programs::sk_lookup::SkLookup
  5575. pub fn aya::programs::sk_lookup::SkLookup::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5576. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookup
  5577. pub fn aya::programs::sk_lookup::SkLookup::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5578. impl core::ops::drop::Drop for aya::programs::sk_lookup::SkLookup
  5579. pub fn aya::programs::sk_lookup::SkLookup::drop(&mut self)
  5580. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_lookup::SkLookup
  5581. pub type &'a aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  5582. pub fn &'a aya::programs::sk_lookup::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  5583. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_lookup::SkLookup
  5584. pub type &'a mut aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  5585. pub fn &'a mut aya::programs::sk_lookup::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  5586. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookup
  5587. impl core::marker::Send for aya::programs::sk_lookup::SkLookup
  5588. impl core::marker::Sync for aya::programs::sk_lookup::SkLookup
  5589. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookup
  5590. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookup
  5591. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookup
  5592. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::From<T>
  5593. pub fn aya::programs::sk_lookup::SkLookup::into(self) -> U
  5594. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::Into<T>
  5595. pub type aya::programs::sk_lookup::SkLookup::Error = core::convert::Infallible
  5596. pub fn aya::programs::sk_lookup::SkLookup::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5597. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::TryFrom<T>
  5598. pub type aya::programs::sk_lookup::SkLookup::Error = <U as core::convert::TryFrom<T>>::Error
  5599. pub fn aya::programs::sk_lookup::SkLookup::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5600. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookup where T: 'static + ?core::marker::Sized
  5601. pub fn aya::programs::sk_lookup::SkLookup::type_id(&self) -> core::any::TypeId
  5602. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  5603. pub fn aya::programs::sk_lookup::SkLookup::borrow(&self) -> &T
  5604. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  5605. pub fn aya::programs::sk_lookup::SkLookup::borrow_mut(&mut self) -> &mut T
  5606. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookup
  5607. pub fn aya::programs::sk_lookup::SkLookup::from(t: T) -> T
  5608. pub struct aya::programs::sk_lookup::SkLookupLink(_)
  5609. impl aya::programs::links::Link for aya::programs::sk_lookup::SkLookupLink
  5610. pub type aya::programs::sk_lookup::SkLookupLink::Id = aya::programs::sk_lookup::SkLookupLinkId
  5611. pub fn aya::programs::sk_lookup::SkLookupLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5612. pub fn aya::programs::sk_lookup::SkLookupLink::id(&self) -> Self::Id
  5613. impl core::cmp::Eq for aya::programs::sk_lookup::SkLookupLink
  5614. impl core::cmp::PartialEq for aya::programs::sk_lookup::SkLookupLink
  5615. pub fn aya::programs::sk_lookup::SkLookupLink::eq(&self, other: &Self) -> bool
  5616. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::sk_lookup::SkLookupLink
  5617. pub fn aya::programs::sk_lookup::SkLookupLink::from(b: aya::programs::links::FdLink) -> aya::programs::sk_lookup::SkLookupLink
  5618. impl core::convert::From<aya::programs::sk_lookup::SkLookupLink> for aya::programs::links::FdLink
  5619. pub fn aya::programs::links::FdLink::from(w: aya::programs::sk_lookup::SkLookupLink) -> aya::programs::links::FdLink
  5620. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookupLink
  5621. pub fn aya::programs::sk_lookup::SkLookupLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5622. impl core::hash::Hash for aya::programs::sk_lookup::SkLookupLink
  5623. pub fn aya::programs::sk_lookup::SkLookupLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5624. impl core::ops::drop::Drop for aya::programs::sk_lookup::SkLookupLink
  5625. pub fn aya::programs::sk_lookup::SkLookupLink::drop(&mut self)
  5626. impl equivalent::Equivalent<aya::programs::sk_lookup::SkLookupLink> for aya::programs::sk_lookup::SkLookupLinkId
  5627. pub fn aya::programs::sk_lookup::SkLookupLinkId::equivalent(&self, key: &aya::programs::sk_lookup::SkLookupLink) -> bool
  5628. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookupLink
  5629. impl core::marker::Send for aya::programs::sk_lookup::SkLookupLink
  5630. impl core::marker::Sync for aya::programs::sk_lookup::SkLookupLink
  5631. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookupLink
  5632. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookupLink
  5633. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookupLink
  5634. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_lookup::SkLookupLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5635. pub fn aya::programs::sk_lookup::SkLookupLink::equivalent(&self, key: &K) -> bool
  5636. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookupLink where U: core::convert::From<T>
  5637. pub fn aya::programs::sk_lookup::SkLookupLink::into(self) -> U
  5638. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookupLink where U: core::convert::Into<T>
  5639. pub type aya::programs::sk_lookup::SkLookupLink::Error = core::convert::Infallible
  5640. pub fn aya::programs::sk_lookup::SkLookupLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5641. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookupLink where U: core::convert::TryFrom<T>
  5642. pub type aya::programs::sk_lookup::SkLookupLink::Error = <U as core::convert::TryFrom<T>>::Error
  5643. pub fn aya::programs::sk_lookup::SkLookupLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5644. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookupLink where T: 'static + ?core::marker::Sized
  5645. pub fn aya::programs::sk_lookup::SkLookupLink::type_id(&self) -> core::any::TypeId
  5646. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookupLink where T: ?core::marker::Sized
  5647. pub fn aya::programs::sk_lookup::SkLookupLink::borrow(&self) -> &T
  5648. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookupLink where T: ?core::marker::Sized
  5649. pub fn aya::programs::sk_lookup::SkLookupLink::borrow_mut(&mut self) -> &mut T
  5650. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookupLink
  5651. pub fn aya::programs::sk_lookup::SkLookupLink::from(t: T) -> T
  5652. pub struct aya::programs::sk_lookup::SkLookupLinkId(_)
  5653. impl core::cmp::Eq for aya::programs::sk_lookup::SkLookupLinkId
  5654. impl core::cmp::PartialEq for aya::programs::sk_lookup::SkLookupLinkId
  5655. pub fn aya::programs::sk_lookup::SkLookupLinkId::eq(&self, other: &aya::programs::sk_lookup::SkLookupLinkId) -> bool
  5656. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookupLinkId
  5657. pub fn aya::programs::sk_lookup::SkLookupLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5658. impl core::hash::Hash for aya::programs::sk_lookup::SkLookupLinkId
  5659. pub fn aya::programs::sk_lookup::SkLookupLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5660. impl core::marker::StructuralPartialEq for aya::programs::sk_lookup::SkLookupLinkId
  5661. impl equivalent::Equivalent<aya::programs::sk_lookup::SkLookupLink> for aya::programs::sk_lookup::SkLookupLinkId
  5662. pub fn aya::programs::sk_lookup::SkLookupLinkId::equivalent(&self, key: &aya::programs::sk_lookup::SkLookupLink) -> bool
  5663. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookupLinkId
  5664. impl core::marker::Send for aya::programs::sk_lookup::SkLookupLinkId
  5665. impl core::marker::Sync for aya::programs::sk_lookup::SkLookupLinkId
  5666. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookupLinkId
  5667. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookupLinkId
  5668. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookupLinkId
  5669. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_lookup::SkLookupLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5670. pub fn aya::programs::sk_lookup::SkLookupLinkId::equivalent(&self, key: &K) -> bool
  5671. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookupLinkId where U: core::convert::From<T>
  5672. pub fn aya::programs::sk_lookup::SkLookupLinkId::into(self) -> U
  5673. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookupLinkId where U: core::convert::Into<T>
  5674. pub type aya::programs::sk_lookup::SkLookupLinkId::Error = core::convert::Infallible
  5675. pub fn aya::programs::sk_lookup::SkLookupLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5676. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookupLinkId where U: core::convert::TryFrom<T>
  5677. pub type aya::programs::sk_lookup::SkLookupLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5678. pub fn aya::programs::sk_lookup::SkLookupLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5679. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookupLinkId where T: 'static + ?core::marker::Sized
  5680. pub fn aya::programs::sk_lookup::SkLookupLinkId::type_id(&self) -> core::any::TypeId
  5681. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookupLinkId where T: ?core::marker::Sized
  5682. pub fn aya::programs::sk_lookup::SkLookupLinkId::borrow(&self) -> &T
  5683. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookupLinkId where T: ?core::marker::Sized
  5684. pub fn aya::programs::sk_lookup::SkLookupLinkId::borrow_mut(&mut self) -> &mut T
  5685. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookupLinkId
  5686. pub fn aya::programs::sk_lookup::SkLookupLinkId::from(t: T) -> T
  5687. pub mod aya::programs::sk_msg
  5688. pub struct aya::programs::sk_msg::SkMsg
  5689. impl aya::programs::sk_msg::SkMsg
  5690. pub const aya::programs::sk_msg::SkMsg::PROGRAM_TYPE: aya::programs::ProgramType
  5691. pub fn aya::programs::sk_msg::SkMsg::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_msg::SkMsgLinkId, aya::programs::ProgramError>
  5692. pub fn aya::programs::sk_msg::SkMsg::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5693. impl aya::programs::sk_msg::SkMsg
  5694. pub fn aya::programs::sk_msg::SkMsg::detach(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5695. pub fn aya::programs::sk_msg::SkMsg::take_link(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<aya::programs::sk_msg::SkMsgLink, aya::programs::ProgramError>
  5696. impl aya::programs::sk_msg::SkMsg
  5697. pub fn aya::programs::sk_msg::SkMsg::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5698. impl aya::programs::sk_msg::SkMsg
  5699. pub fn aya::programs::sk_msg::SkMsg::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5700. impl aya::programs::sk_msg::SkMsg
  5701. pub fn aya::programs::sk_msg::SkMsg::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5702. impl aya::programs::sk_msg::SkMsg
  5703. pub fn aya::programs::sk_msg::SkMsg::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5704. impl aya::programs::sk_msg::SkMsg
  5705. pub fn aya::programs::sk_msg::SkMsg::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5706. pub fn aya::programs::sk_msg::SkMsg::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5707. impl aya::programs::sk_msg::SkMsg
  5708. pub fn aya::programs::sk_msg::SkMsg::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5709. impl core::fmt::Debug for aya::programs::sk_msg::SkMsg
  5710. pub fn aya::programs::sk_msg::SkMsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5711. impl core::ops::drop::Drop for aya::programs::sk_msg::SkMsg
  5712. pub fn aya::programs::sk_msg::SkMsg::drop(&mut self)
  5713. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_msg::SkMsg
  5714. pub type &'a aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  5715. pub fn &'a aya::programs::sk_msg::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  5716. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_msg::SkMsg
  5717. pub type &'a mut aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  5718. pub fn &'a mut aya::programs::sk_msg::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  5719. impl core::marker::Freeze for aya::programs::sk_msg::SkMsg
  5720. impl core::marker::Send for aya::programs::sk_msg::SkMsg
  5721. impl core::marker::Sync for aya::programs::sk_msg::SkMsg
  5722. impl core::marker::Unpin for aya::programs::sk_msg::SkMsg
  5723. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsg
  5724. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsg
  5725. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsg where U: core::convert::From<T>
  5726. pub fn aya::programs::sk_msg::SkMsg::into(self) -> U
  5727. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsg where U: core::convert::Into<T>
  5728. pub type aya::programs::sk_msg::SkMsg::Error = core::convert::Infallible
  5729. pub fn aya::programs::sk_msg::SkMsg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5730. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsg where U: core::convert::TryFrom<T>
  5731. pub type aya::programs::sk_msg::SkMsg::Error = <U as core::convert::TryFrom<T>>::Error
  5732. pub fn aya::programs::sk_msg::SkMsg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5733. impl<T> core::any::Any for aya::programs::sk_msg::SkMsg where T: 'static + ?core::marker::Sized
  5734. pub fn aya::programs::sk_msg::SkMsg::type_id(&self) -> core::any::TypeId
  5735. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  5736. pub fn aya::programs::sk_msg::SkMsg::borrow(&self) -> &T
  5737. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  5738. pub fn aya::programs::sk_msg::SkMsg::borrow_mut(&mut self) -> &mut T
  5739. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsg
  5740. pub fn aya::programs::sk_msg::SkMsg::from(t: T) -> T
  5741. pub struct aya::programs::sk_msg::SkMsgLink(_)
  5742. impl aya::programs::links::Link for aya::programs::sk_msg::SkMsgLink
  5743. pub type aya::programs::sk_msg::SkMsgLink::Id = aya::programs::sk_msg::SkMsgLinkId
  5744. pub fn aya::programs::sk_msg::SkMsgLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5745. pub fn aya::programs::sk_msg::SkMsgLink::id(&self) -> Self::Id
  5746. impl core::cmp::Eq for aya::programs::sk_msg::SkMsgLink
  5747. impl core::cmp::PartialEq for aya::programs::sk_msg::SkMsgLink
  5748. pub fn aya::programs::sk_msg::SkMsgLink::eq(&self, other: &Self) -> bool
  5749. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_msg::SkMsgLink
  5750. pub fn aya::programs::sk_msg::SkMsgLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_msg::SkMsgLink
  5751. impl core::convert::From<aya::programs::sk_msg::SkMsgLink> for aya::programs::links::ProgAttachLink
  5752. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_msg::SkMsgLink) -> aya::programs::links::ProgAttachLink
  5753. impl core::fmt::Debug for aya::programs::sk_msg::SkMsgLink
  5754. pub fn aya::programs::sk_msg::SkMsgLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5755. impl core::hash::Hash for aya::programs::sk_msg::SkMsgLink
  5756. pub fn aya::programs::sk_msg::SkMsgLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5757. impl core::ops::drop::Drop for aya::programs::sk_msg::SkMsgLink
  5758. pub fn aya::programs::sk_msg::SkMsgLink::drop(&mut self)
  5759. impl equivalent::Equivalent<aya::programs::sk_msg::SkMsgLink> for aya::programs::sk_msg::SkMsgLinkId
  5760. pub fn aya::programs::sk_msg::SkMsgLinkId::equivalent(&self, key: &aya::programs::sk_msg::SkMsgLink) -> bool
  5761. impl core::marker::Freeze for aya::programs::sk_msg::SkMsgLink
  5762. impl core::marker::Send for aya::programs::sk_msg::SkMsgLink
  5763. impl core::marker::Sync for aya::programs::sk_msg::SkMsgLink
  5764. impl core::marker::Unpin for aya::programs::sk_msg::SkMsgLink
  5765. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsgLink
  5766. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsgLink
  5767. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_msg::SkMsgLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5768. pub fn aya::programs::sk_msg::SkMsgLink::equivalent(&self, key: &K) -> bool
  5769. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsgLink where U: core::convert::From<T>
  5770. pub fn aya::programs::sk_msg::SkMsgLink::into(self) -> U
  5771. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsgLink where U: core::convert::Into<T>
  5772. pub type aya::programs::sk_msg::SkMsgLink::Error = core::convert::Infallible
  5773. pub fn aya::programs::sk_msg::SkMsgLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5774. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsgLink where U: core::convert::TryFrom<T>
  5775. pub type aya::programs::sk_msg::SkMsgLink::Error = <U as core::convert::TryFrom<T>>::Error
  5776. pub fn aya::programs::sk_msg::SkMsgLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5777. impl<T> core::any::Any for aya::programs::sk_msg::SkMsgLink where T: 'static + ?core::marker::Sized
  5778. pub fn aya::programs::sk_msg::SkMsgLink::type_id(&self) -> core::any::TypeId
  5779. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsgLink where T: ?core::marker::Sized
  5780. pub fn aya::programs::sk_msg::SkMsgLink::borrow(&self) -> &T
  5781. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsgLink where T: ?core::marker::Sized
  5782. pub fn aya::programs::sk_msg::SkMsgLink::borrow_mut(&mut self) -> &mut T
  5783. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsgLink
  5784. pub fn aya::programs::sk_msg::SkMsgLink::from(t: T) -> T
  5785. pub struct aya::programs::sk_msg::SkMsgLinkId(_)
  5786. impl core::cmp::Eq for aya::programs::sk_msg::SkMsgLinkId
  5787. impl core::cmp::PartialEq for aya::programs::sk_msg::SkMsgLinkId
  5788. pub fn aya::programs::sk_msg::SkMsgLinkId::eq(&self, other: &aya::programs::sk_msg::SkMsgLinkId) -> bool
  5789. impl core::fmt::Debug for aya::programs::sk_msg::SkMsgLinkId
  5790. pub fn aya::programs::sk_msg::SkMsgLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5791. impl core::hash::Hash for aya::programs::sk_msg::SkMsgLinkId
  5792. pub fn aya::programs::sk_msg::SkMsgLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5793. impl core::marker::StructuralPartialEq for aya::programs::sk_msg::SkMsgLinkId
  5794. impl equivalent::Equivalent<aya::programs::sk_msg::SkMsgLink> for aya::programs::sk_msg::SkMsgLinkId
  5795. pub fn aya::programs::sk_msg::SkMsgLinkId::equivalent(&self, key: &aya::programs::sk_msg::SkMsgLink) -> bool
  5796. impl core::marker::Freeze for aya::programs::sk_msg::SkMsgLinkId
  5797. impl core::marker::Send for aya::programs::sk_msg::SkMsgLinkId
  5798. impl core::marker::Sync for aya::programs::sk_msg::SkMsgLinkId
  5799. impl core::marker::Unpin for aya::programs::sk_msg::SkMsgLinkId
  5800. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsgLinkId
  5801. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsgLinkId
  5802. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_msg::SkMsgLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5803. pub fn aya::programs::sk_msg::SkMsgLinkId::equivalent(&self, key: &K) -> bool
  5804. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsgLinkId where U: core::convert::From<T>
  5805. pub fn aya::programs::sk_msg::SkMsgLinkId::into(self) -> U
  5806. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsgLinkId where U: core::convert::Into<T>
  5807. pub type aya::programs::sk_msg::SkMsgLinkId::Error = core::convert::Infallible
  5808. pub fn aya::programs::sk_msg::SkMsgLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5809. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsgLinkId where U: core::convert::TryFrom<T>
  5810. pub type aya::programs::sk_msg::SkMsgLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5811. pub fn aya::programs::sk_msg::SkMsgLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5812. impl<T> core::any::Any for aya::programs::sk_msg::SkMsgLinkId where T: 'static + ?core::marker::Sized
  5813. pub fn aya::programs::sk_msg::SkMsgLinkId::type_id(&self) -> core::any::TypeId
  5814. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsgLinkId where T: ?core::marker::Sized
  5815. pub fn aya::programs::sk_msg::SkMsgLinkId::borrow(&self) -> &T
  5816. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsgLinkId where T: ?core::marker::Sized
  5817. pub fn aya::programs::sk_msg::SkMsgLinkId::borrow_mut(&mut self) -> &mut T
  5818. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsgLinkId
  5819. pub fn aya::programs::sk_msg::SkMsgLinkId::from(t: T) -> T
  5820. pub mod aya::programs::sk_skb
  5821. pub enum aya::programs::sk_skb::SkSkbKind
  5822. pub aya::programs::sk_skb::SkSkbKind::StreamParser
  5823. pub aya::programs::sk_skb::SkSkbKind::StreamVerdict
  5824. impl core::clone::Clone for aya::programs::sk_skb::SkSkbKind
  5825. pub fn aya::programs::sk_skb::SkSkbKind::clone(&self) -> aya::programs::sk_skb::SkSkbKind
  5826. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbKind
  5827. pub fn aya::programs::sk_skb::SkSkbKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5828. impl core::marker::Copy for aya::programs::sk_skb::SkSkbKind
  5829. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbKind
  5830. impl core::marker::Send for aya::programs::sk_skb::SkSkbKind
  5831. impl core::marker::Sync for aya::programs::sk_skb::SkSkbKind
  5832. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbKind
  5833. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbKind
  5834. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbKind
  5835. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::From<T>
  5836. pub fn aya::programs::sk_skb::SkSkbKind::into(self) -> U
  5837. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::Into<T>
  5838. pub type aya::programs::sk_skb::SkSkbKind::Error = core::convert::Infallible
  5839. pub fn aya::programs::sk_skb::SkSkbKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5840. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::TryFrom<T>
  5841. pub type aya::programs::sk_skb::SkSkbKind::Error = <U as core::convert::TryFrom<T>>::Error
  5842. pub fn aya::programs::sk_skb::SkSkbKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5843. impl<T> alloc::borrow::ToOwned for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  5844. pub type aya::programs::sk_skb::SkSkbKind::Owned = T
  5845. pub fn aya::programs::sk_skb::SkSkbKind::clone_into(&self, target: &mut T)
  5846. pub fn aya::programs::sk_skb::SkSkbKind::to_owned(&self) -> T
  5847. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbKind where T: 'static + ?core::marker::Sized
  5848. pub fn aya::programs::sk_skb::SkSkbKind::type_id(&self) -> core::any::TypeId
  5849. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  5850. pub fn aya::programs::sk_skb::SkSkbKind::borrow(&self) -> &T
  5851. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  5852. pub fn aya::programs::sk_skb::SkSkbKind::borrow_mut(&mut self) -> &mut T
  5853. impl<T> core::clone::CloneToUninit for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  5854. pub unsafe fn aya::programs::sk_skb::SkSkbKind::clone_to_uninit(&self, dest: *mut u8)
  5855. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbKind
  5856. pub fn aya::programs::sk_skb::SkSkbKind::from(t: T) -> T
  5857. pub struct aya::programs::sk_skb::SkSkb
  5858. impl aya::programs::sk_skb::SkSkb
  5859. pub const aya::programs::sk_skb::SkSkb::PROGRAM_TYPE: aya::programs::ProgramType
  5860. pub fn aya::programs::sk_skb::SkSkb::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_skb::SkSkbLinkId, aya::programs::ProgramError>
  5861. pub fn aya::programs::sk_skb::SkSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  5862. pub fn aya::programs::sk_skb::SkSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5863. impl aya::programs::sk_skb::SkSkb
  5864. pub fn aya::programs::sk_skb::SkSkb::detach(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5865. pub fn aya::programs::sk_skb::SkSkb::take_link(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<aya::programs::sk_skb::SkSkbLink, aya::programs::ProgramError>
  5866. impl aya::programs::sk_skb::SkSkb
  5867. pub fn aya::programs::sk_skb::SkSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5868. impl aya::programs::sk_skb::SkSkb
  5869. pub fn aya::programs::sk_skb::SkSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  5870. impl aya::programs::sk_skb::SkSkb
  5871. pub fn aya::programs::sk_skb::SkSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5872. impl aya::programs::sk_skb::SkSkb
  5873. pub fn aya::programs::sk_skb::SkSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5874. pub fn aya::programs::sk_skb::SkSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5875. impl aya::programs::sk_skb::SkSkb
  5876. pub fn aya::programs::sk_skb::SkSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5877. impl core::fmt::Debug for aya::programs::sk_skb::SkSkb
  5878. pub fn aya::programs::sk_skb::SkSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5879. impl core::ops::drop::Drop for aya::programs::sk_skb::SkSkb
  5880. pub fn aya::programs::sk_skb::SkSkb::drop(&mut self)
  5881. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_skb::SkSkb
  5882. pub type &'a aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  5883. pub fn &'a aya::programs::sk_skb::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  5884. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_skb::SkSkb
  5885. pub type &'a mut aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  5886. pub fn &'a mut aya::programs::sk_skb::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  5887. impl core::marker::Freeze for aya::programs::sk_skb::SkSkb
  5888. impl core::marker::Send for aya::programs::sk_skb::SkSkb
  5889. impl core::marker::Sync for aya::programs::sk_skb::SkSkb
  5890. impl core::marker::Unpin for aya::programs::sk_skb::SkSkb
  5891. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkb
  5892. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkb
  5893. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkb where U: core::convert::From<T>
  5894. pub fn aya::programs::sk_skb::SkSkb::into(self) -> U
  5895. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkb where U: core::convert::Into<T>
  5896. pub type aya::programs::sk_skb::SkSkb::Error = core::convert::Infallible
  5897. pub fn aya::programs::sk_skb::SkSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5898. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkb where U: core::convert::TryFrom<T>
  5899. pub type aya::programs::sk_skb::SkSkb::Error = <U as core::convert::TryFrom<T>>::Error
  5900. pub fn aya::programs::sk_skb::SkSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5901. impl<T> core::any::Any for aya::programs::sk_skb::SkSkb where T: 'static + ?core::marker::Sized
  5902. pub fn aya::programs::sk_skb::SkSkb::type_id(&self) -> core::any::TypeId
  5903. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  5904. pub fn aya::programs::sk_skb::SkSkb::borrow(&self) -> &T
  5905. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  5906. pub fn aya::programs::sk_skb::SkSkb::borrow_mut(&mut self) -> &mut T
  5907. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkb
  5908. pub fn aya::programs::sk_skb::SkSkb::from(t: T) -> T
  5909. pub struct aya::programs::sk_skb::SkSkbLink(_)
  5910. impl aya::programs::links::Link for aya::programs::sk_skb::SkSkbLink
  5911. pub type aya::programs::sk_skb::SkSkbLink::Id = aya::programs::sk_skb::SkSkbLinkId
  5912. pub fn aya::programs::sk_skb::SkSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5913. pub fn aya::programs::sk_skb::SkSkbLink::id(&self) -> Self::Id
  5914. impl core::cmp::Eq for aya::programs::sk_skb::SkSkbLink
  5915. impl core::cmp::PartialEq for aya::programs::sk_skb::SkSkbLink
  5916. pub fn aya::programs::sk_skb::SkSkbLink::eq(&self, other: &Self) -> bool
  5917. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_skb::SkSkbLink
  5918. pub fn aya::programs::sk_skb::SkSkbLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_skb::SkSkbLink
  5919. impl core::convert::From<aya::programs::sk_skb::SkSkbLink> for aya::programs::links::ProgAttachLink
  5920. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_skb::SkSkbLink) -> aya::programs::links::ProgAttachLink
  5921. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbLink
  5922. pub fn aya::programs::sk_skb::SkSkbLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5923. impl core::hash::Hash for aya::programs::sk_skb::SkSkbLink
  5924. pub fn aya::programs::sk_skb::SkSkbLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5925. impl core::ops::drop::Drop for aya::programs::sk_skb::SkSkbLink
  5926. pub fn aya::programs::sk_skb::SkSkbLink::drop(&mut self)
  5927. impl equivalent::Equivalent<aya::programs::sk_skb::SkSkbLink> for aya::programs::sk_skb::SkSkbLinkId
  5928. pub fn aya::programs::sk_skb::SkSkbLinkId::equivalent(&self, key: &aya::programs::sk_skb::SkSkbLink) -> bool
  5929. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbLink
  5930. impl core::marker::Send for aya::programs::sk_skb::SkSkbLink
  5931. impl core::marker::Sync for aya::programs::sk_skb::SkSkbLink
  5932. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbLink
  5933. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbLink
  5934. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbLink
  5935. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_skb::SkSkbLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5936. pub fn aya::programs::sk_skb::SkSkbLink::equivalent(&self, key: &K) -> bool
  5937. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbLink where U: core::convert::From<T>
  5938. pub fn aya::programs::sk_skb::SkSkbLink::into(self) -> U
  5939. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbLink where U: core::convert::Into<T>
  5940. pub type aya::programs::sk_skb::SkSkbLink::Error = core::convert::Infallible
  5941. pub fn aya::programs::sk_skb::SkSkbLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5942. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbLink where U: core::convert::TryFrom<T>
  5943. pub type aya::programs::sk_skb::SkSkbLink::Error = <U as core::convert::TryFrom<T>>::Error
  5944. pub fn aya::programs::sk_skb::SkSkbLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5945. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbLink where T: 'static + ?core::marker::Sized
  5946. pub fn aya::programs::sk_skb::SkSkbLink::type_id(&self) -> core::any::TypeId
  5947. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbLink where T: ?core::marker::Sized
  5948. pub fn aya::programs::sk_skb::SkSkbLink::borrow(&self) -> &T
  5949. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbLink where T: ?core::marker::Sized
  5950. pub fn aya::programs::sk_skb::SkSkbLink::borrow_mut(&mut self) -> &mut T
  5951. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbLink
  5952. pub fn aya::programs::sk_skb::SkSkbLink::from(t: T) -> T
  5953. pub struct aya::programs::sk_skb::SkSkbLinkId(_)
  5954. impl core::cmp::Eq for aya::programs::sk_skb::SkSkbLinkId
  5955. impl core::cmp::PartialEq for aya::programs::sk_skb::SkSkbLinkId
  5956. pub fn aya::programs::sk_skb::SkSkbLinkId::eq(&self, other: &aya::programs::sk_skb::SkSkbLinkId) -> bool
  5957. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbLinkId
  5958. pub fn aya::programs::sk_skb::SkSkbLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5959. impl core::hash::Hash for aya::programs::sk_skb::SkSkbLinkId
  5960. pub fn aya::programs::sk_skb::SkSkbLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5961. impl core::marker::StructuralPartialEq for aya::programs::sk_skb::SkSkbLinkId
  5962. impl equivalent::Equivalent<aya::programs::sk_skb::SkSkbLink> for aya::programs::sk_skb::SkSkbLinkId
  5963. pub fn aya::programs::sk_skb::SkSkbLinkId::equivalent(&self, key: &aya::programs::sk_skb::SkSkbLink) -> bool
  5964. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbLinkId
  5965. impl core::marker::Send for aya::programs::sk_skb::SkSkbLinkId
  5966. impl core::marker::Sync for aya::programs::sk_skb::SkSkbLinkId
  5967. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbLinkId
  5968. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbLinkId
  5969. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbLinkId
  5970. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_skb::SkSkbLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5971. pub fn aya::programs::sk_skb::SkSkbLinkId::equivalent(&self, key: &K) -> bool
  5972. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbLinkId where U: core::convert::From<T>
  5973. pub fn aya::programs::sk_skb::SkSkbLinkId::into(self) -> U
  5974. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbLinkId where U: core::convert::Into<T>
  5975. pub type aya::programs::sk_skb::SkSkbLinkId::Error = core::convert::Infallible
  5976. pub fn aya::programs::sk_skb::SkSkbLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5977. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbLinkId where U: core::convert::TryFrom<T>
  5978. pub type aya::programs::sk_skb::SkSkbLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5979. pub fn aya::programs::sk_skb::SkSkbLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5980. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbLinkId where T: 'static + ?core::marker::Sized
  5981. pub fn aya::programs::sk_skb::SkSkbLinkId::type_id(&self) -> core::any::TypeId
  5982. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbLinkId where T: ?core::marker::Sized
  5983. pub fn aya::programs::sk_skb::SkSkbLinkId::borrow(&self) -> &T
  5984. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbLinkId where T: ?core::marker::Sized
  5985. pub fn aya::programs::sk_skb::SkSkbLinkId::borrow_mut(&mut self) -> &mut T
  5986. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbLinkId
  5987. pub fn aya::programs::sk_skb::SkSkbLinkId::from(t: T) -> T
  5988. pub mod aya::programs::sock_ops
  5989. pub struct aya::programs::sock_ops::SockOps
  5990. impl aya::programs::sock_ops::SockOps
  5991. pub const aya::programs::sock_ops::SockOps::PROGRAM_TYPE: aya::programs::ProgramType
  5992. pub fn aya::programs::sock_ops::SockOps::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::sock_ops::SockOpsLinkId, aya::programs::ProgramError>
  5993. pub fn aya::programs::sock_ops::SockOps::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5994. impl aya::programs::sock_ops::SockOps
  5995. pub fn aya::programs::sock_ops::SockOps::detach(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5996. pub fn aya::programs::sock_ops::SockOps::take_link(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<aya::programs::sock_ops::SockOpsLink, aya::programs::ProgramError>
  5997. impl aya::programs::sock_ops::SockOps
  5998. pub fn aya::programs::sock_ops::SockOps::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5999. impl aya::programs::sock_ops::SockOps
  6000. pub fn aya::programs::sock_ops::SockOps::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6001. impl aya::programs::sock_ops::SockOps
  6002. pub fn aya::programs::sock_ops::SockOps::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6003. impl aya::programs::sock_ops::SockOps
  6004. pub fn aya::programs::sock_ops::SockOps::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6005. impl aya::programs::sock_ops::SockOps
  6006. pub fn aya::programs::sock_ops::SockOps::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6007. pub fn aya::programs::sock_ops::SockOps::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6008. impl aya::programs::sock_ops::SockOps
  6009. pub fn aya::programs::sock_ops::SockOps::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6010. impl core::fmt::Debug for aya::programs::sock_ops::SockOps
  6011. pub fn aya::programs::sock_ops::SockOps::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6012. impl core::ops::drop::Drop for aya::programs::sock_ops::SockOps
  6013. pub fn aya::programs::sock_ops::SockOps::drop(&mut self)
  6014. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sock_ops::SockOps
  6015. pub type &'a aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  6016. pub fn &'a aya::programs::sock_ops::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  6017. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sock_ops::SockOps
  6018. pub type &'a mut aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  6019. pub fn &'a mut aya::programs::sock_ops::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  6020. impl core::marker::Freeze for aya::programs::sock_ops::SockOps
  6021. impl core::marker::Send for aya::programs::sock_ops::SockOps
  6022. impl core::marker::Sync for aya::programs::sock_ops::SockOps
  6023. impl core::marker::Unpin for aya::programs::sock_ops::SockOps
  6024. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOps
  6025. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOps
  6026. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOps where U: core::convert::From<T>
  6027. pub fn aya::programs::sock_ops::SockOps::into(self) -> U
  6028. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOps where U: core::convert::Into<T>
  6029. pub type aya::programs::sock_ops::SockOps::Error = core::convert::Infallible
  6030. pub fn aya::programs::sock_ops::SockOps::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6031. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOps where U: core::convert::TryFrom<T>
  6032. pub type aya::programs::sock_ops::SockOps::Error = <U as core::convert::TryFrom<T>>::Error
  6033. pub fn aya::programs::sock_ops::SockOps::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6034. impl<T> core::any::Any for aya::programs::sock_ops::SockOps where T: 'static + ?core::marker::Sized
  6035. pub fn aya::programs::sock_ops::SockOps::type_id(&self) -> core::any::TypeId
  6036. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  6037. pub fn aya::programs::sock_ops::SockOps::borrow(&self) -> &T
  6038. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  6039. pub fn aya::programs::sock_ops::SockOps::borrow_mut(&mut self) -> &mut T
  6040. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOps
  6041. pub fn aya::programs::sock_ops::SockOps::from(t: T) -> T
  6042. pub struct aya::programs::sock_ops::SockOpsLink(_)
  6043. impl aya::programs::links::Link for aya::programs::sock_ops::SockOpsLink
  6044. pub type aya::programs::sock_ops::SockOpsLink::Id = aya::programs::sock_ops::SockOpsLinkId
  6045. pub fn aya::programs::sock_ops::SockOpsLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6046. pub fn aya::programs::sock_ops::SockOpsLink::id(&self) -> Self::Id
  6047. impl core::cmp::Eq for aya::programs::sock_ops::SockOpsLink
  6048. impl core::cmp::PartialEq for aya::programs::sock_ops::SockOpsLink
  6049. pub fn aya::programs::sock_ops::SockOpsLink::eq(&self, other: &Self) -> bool
  6050. impl core::convert::TryFrom<aya::programs::sock_ops::SockOpsLink> for aya::programs::links::FdLink
  6051. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6052. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::sock_ops::SockOpsLink) -> core::result::Result<Self, Self::Error>
  6053. impl core::fmt::Debug for aya::programs::sock_ops::SockOpsLink
  6054. pub fn aya::programs::sock_ops::SockOpsLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6055. impl core::hash::Hash for aya::programs::sock_ops::SockOpsLink
  6056. pub fn aya::programs::sock_ops::SockOpsLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6057. impl core::ops::drop::Drop for aya::programs::sock_ops::SockOpsLink
  6058. pub fn aya::programs::sock_ops::SockOpsLink::drop(&mut self)
  6059. impl equivalent::Equivalent<aya::programs::sock_ops::SockOpsLink> for aya::programs::sock_ops::SockOpsLinkId
  6060. pub fn aya::programs::sock_ops::SockOpsLinkId::equivalent(&self, key: &aya::programs::sock_ops::SockOpsLink) -> bool
  6061. impl core::marker::Freeze for aya::programs::sock_ops::SockOpsLink
  6062. impl core::marker::Send for aya::programs::sock_ops::SockOpsLink
  6063. impl core::marker::Sync for aya::programs::sock_ops::SockOpsLink
  6064. impl core::marker::Unpin for aya::programs::sock_ops::SockOpsLink
  6065. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOpsLink
  6066. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOpsLink
  6067. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sock_ops::SockOpsLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6068. pub fn aya::programs::sock_ops::SockOpsLink::equivalent(&self, key: &K) -> bool
  6069. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOpsLink where U: core::convert::From<T>
  6070. pub fn aya::programs::sock_ops::SockOpsLink::into(self) -> U
  6071. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOpsLink where U: core::convert::Into<T>
  6072. pub type aya::programs::sock_ops::SockOpsLink::Error = core::convert::Infallible
  6073. pub fn aya::programs::sock_ops::SockOpsLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6074. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOpsLink where U: core::convert::TryFrom<T>
  6075. pub type aya::programs::sock_ops::SockOpsLink::Error = <U as core::convert::TryFrom<T>>::Error
  6076. pub fn aya::programs::sock_ops::SockOpsLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6077. impl<T> core::any::Any for aya::programs::sock_ops::SockOpsLink where T: 'static + ?core::marker::Sized
  6078. pub fn aya::programs::sock_ops::SockOpsLink::type_id(&self) -> core::any::TypeId
  6079. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOpsLink where T: ?core::marker::Sized
  6080. pub fn aya::programs::sock_ops::SockOpsLink::borrow(&self) -> &T
  6081. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOpsLink where T: ?core::marker::Sized
  6082. pub fn aya::programs::sock_ops::SockOpsLink::borrow_mut(&mut self) -> &mut T
  6083. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOpsLink
  6084. pub fn aya::programs::sock_ops::SockOpsLink::from(t: T) -> T
  6085. pub struct aya::programs::sock_ops::SockOpsLinkId(_)
  6086. impl core::cmp::Eq for aya::programs::sock_ops::SockOpsLinkId
  6087. impl core::cmp::PartialEq for aya::programs::sock_ops::SockOpsLinkId
  6088. pub fn aya::programs::sock_ops::SockOpsLinkId::eq(&self, other: &aya::programs::sock_ops::SockOpsLinkId) -> bool
  6089. impl core::fmt::Debug for aya::programs::sock_ops::SockOpsLinkId
  6090. pub fn aya::programs::sock_ops::SockOpsLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6091. impl core::hash::Hash for aya::programs::sock_ops::SockOpsLinkId
  6092. pub fn aya::programs::sock_ops::SockOpsLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6093. impl core::marker::StructuralPartialEq for aya::programs::sock_ops::SockOpsLinkId
  6094. impl equivalent::Equivalent<aya::programs::sock_ops::SockOpsLink> for aya::programs::sock_ops::SockOpsLinkId
  6095. pub fn aya::programs::sock_ops::SockOpsLinkId::equivalent(&self, key: &aya::programs::sock_ops::SockOpsLink) -> bool
  6096. impl core::marker::Freeze for aya::programs::sock_ops::SockOpsLinkId
  6097. impl core::marker::Send for aya::programs::sock_ops::SockOpsLinkId
  6098. impl core::marker::Sync for aya::programs::sock_ops::SockOpsLinkId
  6099. impl core::marker::Unpin for aya::programs::sock_ops::SockOpsLinkId
  6100. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOpsLinkId
  6101. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOpsLinkId
  6102. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sock_ops::SockOpsLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6103. pub fn aya::programs::sock_ops::SockOpsLinkId::equivalent(&self, key: &K) -> bool
  6104. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOpsLinkId where U: core::convert::From<T>
  6105. pub fn aya::programs::sock_ops::SockOpsLinkId::into(self) -> U
  6106. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOpsLinkId where U: core::convert::Into<T>
  6107. pub type aya::programs::sock_ops::SockOpsLinkId::Error = core::convert::Infallible
  6108. pub fn aya::programs::sock_ops::SockOpsLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6109. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOpsLinkId where U: core::convert::TryFrom<T>
  6110. pub type aya::programs::sock_ops::SockOpsLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6111. pub fn aya::programs::sock_ops::SockOpsLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6112. impl<T> core::any::Any for aya::programs::sock_ops::SockOpsLinkId where T: 'static + ?core::marker::Sized
  6113. pub fn aya::programs::sock_ops::SockOpsLinkId::type_id(&self) -> core::any::TypeId
  6114. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOpsLinkId where T: ?core::marker::Sized
  6115. pub fn aya::programs::sock_ops::SockOpsLinkId::borrow(&self) -> &T
  6116. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOpsLinkId where T: ?core::marker::Sized
  6117. pub fn aya::programs::sock_ops::SockOpsLinkId::borrow_mut(&mut self) -> &mut T
  6118. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOpsLinkId
  6119. pub fn aya::programs::sock_ops::SockOpsLinkId::from(t: T) -> T
  6120. pub mod aya::programs::socket_filter
  6121. pub enum aya::programs::socket_filter::SocketFilterError
  6122. pub aya::programs::socket_filter::SocketFilterError::SoAttachEbpfError
  6123. pub aya::programs::socket_filter::SocketFilterError::SoAttachEbpfError::io_error: std::io::error::Error
  6124. impl core::convert::From<aya::programs::socket_filter::SocketFilterError> for aya::programs::ProgramError
  6125. pub fn aya::programs::ProgramError::from(source: aya::programs::socket_filter::SocketFilterError) -> Self
  6126. impl core::error::Error for aya::programs::socket_filter::SocketFilterError
  6127. pub fn aya::programs::socket_filter::SocketFilterError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6128. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterError
  6129. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6130. impl core::fmt::Display for aya::programs::socket_filter::SocketFilterError
  6131. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6132. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterError
  6133. impl core::marker::Send for aya::programs::socket_filter::SocketFilterError
  6134. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterError
  6135. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterError
  6136. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterError
  6137. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterError
  6138. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::From<T>
  6139. pub fn aya::programs::socket_filter::SocketFilterError::into(self) -> U
  6140. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::Into<T>
  6141. pub type aya::programs::socket_filter::SocketFilterError::Error = core::convert::Infallible
  6142. pub fn aya::programs::socket_filter::SocketFilterError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6143. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::TryFrom<T>
  6144. pub type aya::programs::socket_filter::SocketFilterError::Error = <U as core::convert::TryFrom<T>>::Error
  6145. pub fn aya::programs::socket_filter::SocketFilterError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6146. impl<T> alloc::string::ToString for aya::programs::socket_filter::SocketFilterError where T: core::fmt::Display + ?core::marker::Sized
  6147. pub fn aya::programs::socket_filter::SocketFilterError::to_string(&self) -> alloc::string::String
  6148. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterError where T: 'static + ?core::marker::Sized
  6149. pub fn aya::programs::socket_filter::SocketFilterError::type_id(&self) -> core::any::TypeId
  6150. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  6151. pub fn aya::programs::socket_filter::SocketFilterError::borrow(&self) -> &T
  6152. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  6153. pub fn aya::programs::socket_filter::SocketFilterError::borrow_mut(&mut self) -> &mut T
  6154. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterError
  6155. pub fn aya::programs::socket_filter::SocketFilterError::from(t: T) -> T
  6156. pub struct aya::programs::socket_filter::SocketFilter
  6157. impl aya::programs::socket_filter::SocketFilter
  6158. pub const aya::programs::socket_filter::SocketFilter::PROGRAM_TYPE: aya::programs::ProgramType
  6159. pub fn aya::programs::socket_filter::SocketFilter::attach<T: std::os::fd::owned::AsFd>(&mut self, socket: T) -> core::result::Result<aya::programs::socket_filter::SocketFilterLinkId, aya::programs::ProgramError>
  6160. pub fn aya::programs::socket_filter::SocketFilter::detach(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6161. pub fn aya::programs::socket_filter::SocketFilter::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6162. pub fn aya::programs::socket_filter::SocketFilter::take_link(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<aya::programs::socket_filter::SocketFilterLink, aya::programs::ProgramError>
  6163. impl aya::programs::socket_filter::SocketFilter
  6164. pub fn aya::programs::socket_filter::SocketFilter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6165. impl aya::programs::socket_filter::SocketFilter
  6166. pub fn aya::programs::socket_filter::SocketFilter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6167. impl aya::programs::socket_filter::SocketFilter
  6168. pub fn aya::programs::socket_filter::SocketFilter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6169. impl aya::programs::socket_filter::SocketFilter
  6170. pub fn aya::programs::socket_filter::SocketFilter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6171. pub fn aya::programs::socket_filter::SocketFilter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6172. impl aya::programs::socket_filter::SocketFilter
  6173. pub fn aya::programs::socket_filter::SocketFilter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6174. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilter
  6175. pub fn aya::programs::socket_filter::SocketFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6176. impl core::ops::drop::Drop for aya::programs::socket_filter::SocketFilter
  6177. pub fn aya::programs::socket_filter::SocketFilter::drop(&mut self)
  6178. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::socket_filter::SocketFilter
  6179. pub type &'a aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  6180. pub fn &'a aya::programs::socket_filter::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  6181. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::socket_filter::SocketFilter
  6182. pub type &'a mut aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  6183. pub fn &'a mut aya::programs::socket_filter::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  6184. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilter
  6185. impl core::marker::Send for aya::programs::socket_filter::SocketFilter
  6186. impl core::marker::Sync for aya::programs::socket_filter::SocketFilter
  6187. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilter
  6188. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilter
  6189. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilter
  6190. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::From<T>
  6191. pub fn aya::programs::socket_filter::SocketFilter::into(self) -> U
  6192. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::Into<T>
  6193. pub type aya::programs::socket_filter::SocketFilter::Error = core::convert::Infallible
  6194. pub fn aya::programs::socket_filter::SocketFilter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6195. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::TryFrom<T>
  6196. pub type aya::programs::socket_filter::SocketFilter::Error = <U as core::convert::TryFrom<T>>::Error
  6197. pub fn aya::programs::socket_filter::SocketFilter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6198. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilter where T: 'static + ?core::marker::Sized
  6199. pub fn aya::programs::socket_filter::SocketFilter::type_id(&self) -> core::any::TypeId
  6200. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  6201. pub fn aya::programs::socket_filter::SocketFilter::borrow(&self) -> &T
  6202. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  6203. pub fn aya::programs::socket_filter::SocketFilter::borrow_mut(&mut self) -> &mut T
  6204. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilter
  6205. pub fn aya::programs::socket_filter::SocketFilter::from(t: T) -> T
  6206. pub struct aya::programs::socket_filter::SocketFilterLink
  6207. impl aya::programs::links::Link for aya::programs::socket_filter::SocketFilterLink
  6208. pub type aya::programs::socket_filter::SocketFilterLink::Id = aya::programs::socket_filter::SocketFilterLinkId
  6209. pub fn aya::programs::socket_filter::SocketFilterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6210. pub fn aya::programs::socket_filter::SocketFilterLink::id(&self) -> Self::Id
  6211. impl core::cmp::Eq for aya::programs::socket_filter::SocketFilterLink
  6212. impl core::cmp::PartialEq for aya::programs::socket_filter::SocketFilterLink
  6213. pub fn aya::programs::socket_filter::SocketFilterLink::eq(&self, other: &Self) -> bool
  6214. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterLink
  6215. pub fn aya::programs::socket_filter::SocketFilterLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6216. impl core::hash::Hash for aya::programs::socket_filter::SocketFilterLink
  6217. pub fn aya::programs::socket_filter::SocketFilterLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6218. impl equivalent::Equivalent<aya::programs::socket_filter::SocketFilterLink> for aya::programs::socket_filter::SocketFilterLinkId
  6219. pub fn aya::programs::socket_filter::SocketFilterLinkId::equivalent(&self, key: &aya::programs::socket_filter::SocketFilterLink) -> bool
  6220. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterLink
  6221. impl core::marker::Send for aya::programs::socket_filter::SocketFilterLink
  6222. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterLink
  6223. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterLink
  6224. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterLink
  6225. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterLink
  6226. impl<Q, K> equivalent::Equivalent<K> for aya::programs::socket_filter::SocketFilterLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6227. pub fn aya::programs::socket_filter::SocketFilterLink::equivalent(&self, key: &K) -> bool
  6228. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterLink where U: core::convert::From<T>
  6229. pub fn aya::programs::socket_filter::SocketFilterLink::into(self) -> U
  6230. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterLink where U: core::convert::Into<T>
  6231. pub type aya::programs::socket_filter::SocketFilterLink::Error = core::convert::Infallible
  6232. pub fn aya::programs::socket_filter::SocketFilterLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6233. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterLink where U: core::convert::TryFrom<T>
  6234. pub type aya::programs::socket_filter::SocketFilterLink::Error = <U as core::convert::TryFrom<T>>::Error
  6235. pub fn aya::programs::socket_filter::SocketFilterLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6236. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterLink where T: 'static + ?core::marker::Sized
  6237. pub fn aya::programs::socket_filter::SocketFilterLink::type_id(&self) -> core::any::TypeId
  6238. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterLink where T: ?core::marker::Sized
  6239. pub fn aya::programs::socket_filter::SocketFilterLink::borrow(&self) -> &T
  6240. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterLink where T: ?core::marker::Sized
  6241. pub fn aya::programs::socket_filter::SocketFilterLink::borrow_mut(&mut self) -> &mut T
  6242. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterLink
  6243. pub fn aya::programs::socket_filter::SocketFilterLink::from(t: T) -> T
  6244. pub struct aya::programs::socket_filter::SocketFilterLinkId(_, _)
  6245. impl core::cmp::Eq for aya::programs::socket_filter::SocketFilterLinkId
  6246. impl core::cmp::PartialEq for aya::programs::socket_filter::SocketFilterLinkId
  6247. pub fn aya::programs::socket_filter::SocketFilterLinkId::eq(&self, other: &aya::programs::socket_filter::SocketFilterLinkId) -> bool
  6248. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterLinkId
  6249. pub fn aya::programs::socket_filter::SocketFilterLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6250. impl core::hash::Hash for aya::programs::socket_filter::SocketFilterLinkId
  6251. pub fn aya::programs::socket_filter::SocketFilterLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6252. impl core::marker::StructuralPartialEq for aya::programs::socket_filter::SocketFilterLinkId
  6253. impl equivalent::Equivalent<aya::programs::socket_filter::SocketFilterLink> for aya::programs::socket_filter::SocketFilterLinkId
  6254. pub fn aya::programs::socket_filter::SocketFilterLinkId::equivalent(&self, key: &aya::programs::socket_filter::SocketFilterLink) -> bool
  6255. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterLinkId
  6256. impl core::marker::Send for aya::programs::socket_filter::SocketFilterLinkId
  6257. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterLinkId
  6258. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterLinkId
  6259. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterLinkId
  6260. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterLinkId
  6261. impl<Q, K> equivalent::Equivalent<K> for aya::programs::socket_filter::SocketFilterLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6262. pub fn aya::programs::socket_filter::SocketFilterLinkId::equivalent(&self, key: &K) -> bool
  6263. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterLinkId where U: core::convert::From<T>
  6264. pub fn aya::programs::socket_filter::SocketFilterLinkId::into(self) -> U
  6265. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterLinkId where U: core::convert::Into<T>
  6266. pub type aya::programs::socket_filter::SocketFilterLinkId::Error = core::convert::Infallible
  6267. pub fn aya::programs::socket_filter::SocketFilterLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6268. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterLinkId where U: core::convert::TryFrom<T>
  6269. pub type aya::programs::socket_filter::SocketFilterLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6270. pub fn aya::programs::socket_filter::SocketFilterLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6271. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterLinkId where T: 'static + ?core::marker::Sized
  6272. pub fn aya::programs::socket_filter::SocketFilterLinkId::type_id(&self) -> core::any::TypeId
  6273. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterLinkId where T: ?core::marker::Sized
  6274. pub fn aya::programs::socket_filter::SocketFilterLinkId::borrow(&self) -> &T
  6275. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterLinkId where T: ?core::marker::Sized
  6276. pub fn aya::programs::socket_filter::SocketFilterLinkId::borrow_mut(&mut self) -> &mut T
  6277. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterLinkId
  6278. pub fn aya::programs::socket_filter::SocketFilterLinkId::from(t: T) -> T
  6279. pub mod aya::programs::tc
  6280. pub enum aya::programs::tc::TcAttachOptions
  6281. pub aya::programs::tc::TcAttachOptions::Netlink(aya::programs::tc::NlOptions)
  6282. pub aya::programs::tc::TcAttachOptions::TcxOrder(aya::programs::links::LinkOrder)
  6283. impl core::fmt::Debug for aya::programs::tc::TcAttachOptions
  6284. pub fn aya::programs::tc::TcAttachOptions::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6285. impl core::marker::Freeze for aya::programs::tc::TcAttachOptions
  6286. impl core::marker::Send for aya::programs::tc::TcAttachOptions
  6287. impl core::marker::Sync for aya::programs::tc::TcAttachOptions
  6288. impl core::marker::Unpin for aya::programs::tc::TcAttachOptions
  6289. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachOptions
  6290. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachOptions
  6291. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachOptions where U: core::convert::From<T>
  6292. pub fn aya::programs::tc::TcAttachOptions::into(self) -> U
  6293. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachOptions where U: core::convert::Into<T>
  6294. pub type aya::programs::tc::TcAttachOptions::Error = core::convert::Infallible
  6295. pub fn aya::programs::tc::TcAttachOptions::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6296. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachOptions where U: core::convert::TryFrom<T>
  6297. pub type aya::programs::tc::TcAttachOptions::Error = <U as core::convert::TryFrom<T>>::Error
  6298. pub fn aya::programs::tc::TcAttachOptions::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6299. impl<T> core::any::Any for aya::programs::tc::TcAttachOptions where T: 'static + ?core::marker::Sized
  6300. pub fn aya::programs::tc::TcAttachOptions::type_id(&self) -> core::any::TypeId
  6301. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachOptions where T: ?core::marker::Sized
  6302. pub fn aya::programs::tc::TcAttachOptions::borrow(&self) -> &T
  6303. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachOptions where T: ?core::marker::Sized
  6304. pub fn aya::programs::tc::TcAttachOptions::borrow_mut(&mut self) -> &mut T
  6305. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachOptions
  6306. pub fn aya::programs::tc::TcAttachOptions::from(t: T) -> T
  6307. pub enum aya::programs::tc::TcAttachType
  6308. pub aya::programs::tc::TcAttachType::Custom(u32)
  6309. pub aya::programs::tc::TcAttachType::Egress
  6310. pub aya::programs::tc::TcAttachType::Ingress
  6311. impl core::clone::Clone for aya::programs::tc::TcAttachType
  6312. pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType
  6313. impl core::cmp::Eq for aya::programs::tc::TcAttachType
  6314. impl core::cmp::PartialEq for aya::programs::tc::TcAttachType
  6315. pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool
  6316. impl core::fmt::Debug for aya::programs::tc::TcAttachType
  6317. pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6318. impl core::hash::Hash for aya::programs::tc::TcAttachType
  6319. pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6320. impl core::marker::Copy for aya::programs::tc::TcAttachType
  6321. impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType
  6322. impl core::marker::Freeze for aya::programs::tc::TcAttachType
  6323. impl core::marker::Send for aya::programs::tc::TcAttachType
  6324. impl core::marker::Sync for aya::programs::tc::TcAttachType
  6325. impl core::marker::Unpin for aya::programs::tc::TcAttachType
  6326. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType
  6327. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType
  6328. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::TcAttachType where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6329. pub fn aya::programs::tc::TcAttachType::equivalent(&self, key: &K) -> bool
  6330. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachType where U: core::convert::From<T>
  6331. pub fn aya::programs::tc::TcAttachType::into(self) -> U
  6332. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachType where U: core::convert::Into<T>
  6333. pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible
  6334. pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6335. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachType where U: core::convert::TryFrom<T>
  6336. pub type aya::programs::tc::TcAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  6337. pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6338. impl<T> alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone
  6339. pub type aya::programs::tc::TcAttachType::Owned = T
  6340. pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T)
  6341. pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T
  6342. impl<T> core::any::Any for aya::programs::tc::TcAttachType where T: 'static + ?core::marker::Sized
  6343. pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId
  6344. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  6345. pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T
  6346. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  6347. pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T
  6348. impl<T> core::clone::CloneToUninit for aya::programs::tc::TcAttachType where T: core::clone::Clone
  6349. pub unsafe fn aya::programs::tc::TcAttachType::clone_to_uninit(&self, dest: *mut u8)
  6350. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachType
  6351. pub fn aya::programs::tc::TcAttachType::from(t: T) -> T
  6352. pub enum aya::programs::tc::TcError
  6353. pub aya::programs::tc::TcError::AlreadyAttached
  6354. pub aya::programs::tc::TcError::InvalidLinkOperation
  6355. pub aya::programs::tc::TcError::InvalidTcxAttach(u32)
  6356. pub aya::programs::tc::TcError::IoError(std::io::error::Error)
  6357. pub aya::programs::tc::TcError::NetlinkError(aya::sys::netlink::NetlinkError)
  6358. pub aya::programs::tc::TcError::NulError(alloc::ffi::c_str::NulError)
  6359. impl core::convert::From<alloc::ffi::c_str::NulError> for aya::programs::tc::TcError
  6360. pub fn aya::programs::tc::TcError::from(source: alloc::ffi::c_str::NulError) -> Self
  6361. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  6362. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  6363. impl core::convert::From<std::io::error::Error> for aya::programs::tc::TcError
  6364. pub fn aya::programs::tc::TcError::from(source: std::io::error::Error) -> Self
  6365. impl core::error::Error for aya::programs::tc::TcError
  6366. pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6367. impl core::fmt::Debug for aya::programs::tc::TcError
  6368. pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6369. impl core::fmt::Display for aya::programs::tc::TcError
  6370. pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6371. impl core::marker::Freeze for aya::programs::tc::TcError
  6372. impl core::marker::Send for aya::programs::tc::TcError
  6373. impl core::marker::Sync for aya::programs::tc::TcError
  6374. impl core::marker::Unpin for aya::programs::tc::TcError
  6375. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError
  6376. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError
  6377. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcError where U: core::convert::From<T>
  6378. pub fn aya::programs::tc::TcError::into(self) -> U
  6379. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcError where U: core::convert::Into<T>
  6380. pub type aya::programs::tc::TcError::Error = core::convert::Infallible
  6381. pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6382. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcError where U: core::convert::TryFrom<T>
  6383. pub type aya::programs::tc::TcError::Error = <U as core::convert::TryFrom<T>>::Error
  6384. pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6385. impl<T> alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + ?core::marker::Sized
  6386. pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String
  6387. impl<T> core::any::Any for aya::programs::tc::TcError where T: 'static + ?core::marker::Sized
  6388. pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId
  6389. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  6390. pub fn aya::programs::tc::TcError::borrow(&self) -> &T
  6391. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  6392. pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T
  6393. impl<T> core::convert::From<T> for aya::programs::tc::TcError
  6394. pub fn aya::programs::tc::TcError::from(t: T) -> T
  6395. pub struct aya::programs::tc::NlOptions
  6396. pub aya::programs::tc::NlOptions::handle: u32
  6397. pub aya::programs::tc::NlOptions::priority: u16
  6398. impl core::cmp::Eq for aya::programs::tc::NlOptions
  6399. impl core::cmp::PartialEq for aya::programs::tc::NlOptions
  6400. pub fn aya::programs::tc::NlOptions::eq(&self, other: &aya::programs::tc::NlOptions) -> bool
  6401. impl core::default::Default for aya::programs::tc::NlOptions
  6402. pub fn aya::programs::tc::NlOptions::default() -> aya::programs::tc::NlOptions
  6403. impl core::fmt::Debug for aya::programs::tc::NlOptions
  6404. pub fn aya::programs::tc::NlOptions::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6405. impl core::hash::Hash for aya::programs::tc::NlOptions
  6406. pub fn aya::programs::tc::NlOptions::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6407. impl core::marker::StructuralPartialEq for aya::programs::tc::NlOptions
  6408. impl core::marker::Freeze for aya::programs::tc::NlOptions
  6409. impl core::marker::Send for aya::programs::tc::NlOptions
  6410. impl core::marker::Sync for aya::programs::tc::NlOptions
  6411. impl core::marker::Unpin for aya::programs::tc::NlOptions
  6412. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::NlOptions
  6413. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::NlOptions
  6414. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::NlOptions where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6415. pub fn aya::programs::tc::NlOptions::equivalent(&self, key: &K) -> bool
  6416. impl<T, U> core::convert::Into<U> for aya::programs::tc::NlOptions where U: core::convert::From<T>
  6417. pub fn aya::programs::tc::NlOptions::into(self) -> U
  6418. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::NlOptions where U: core::convert::Into<T>
  6419. pub type aya::programs::tc::NlOptions::Error = core::convert::Infallible
  6420. pub fn aya::programs::tc::NlOptions::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6421. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::NlOptions where U: core::convert::TryFrom<T>
  6422. pub type aya::programs::tc::NlOptions::Error = <U as core::convert::TryFrom<T>>::Error
  6423. pub fn aya::programs::tc::NlOptions::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6424. impl<T> core::any::Any for aya::programs::tc::NlOptions where T: 'static + ?core::marker::Sized
  6425. pub fn aya::programs::tc::NlOptions::type_id(&self) -> core::any::TypeId
  6426. impl<T> core::borrow::Borrow<T> for aya::programs::tc::NlOptions where T: ?core::marker::Sized
  6427. pub fn aya::programs::tc::NlOptions::borrow(&self) -> &T
  6428. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::NlOptions where T: ?core::marker::Sized
  6429. pub fn aya::programs::tc::NlOptions::borrow_mut(&mut self) -> &mut T
  6430. impl<T> core::convert::From<T> for aya::programs::tc::NlOptions
  6431. pub fn aya::programs::tc::NlOptions::from(t: T) -> T
  6432. pub struct aya::programs::tc::SchedClassifier
  6433. impl aya::programs::tc::SchedClassifier
  6434. pub const aya::programs::tc::SchedClassifier::PROGRAM_TYPE: aya::programs::ProgramType
  6435. pub fn aya::programs::tc::SchedClassifier::attach(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6436. pub fn aya::programs::tc::SchedClassifier::attach_to_link(&mut self, link: aya::programs::tc::SchedClassifierLink) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6437. pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcAttachOptions) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6438. pub fn aya::programs::tc::SchedClassifier::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6439. pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6440. pub fn aya::programs::tc::SchedClassifier::query_tcx(interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<(u64, alloc::vec::Vec<aya::programs::ProgramInfo>), aya::programs::ProgramError>
  6441. impl aya::programs::tc::SchedClassifier
  6442. pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6443. pub fn aya::programs::tc::SchedClassifier::take_link(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<aya::programs::tc::SchedClassifierLink, aya::programs::ProgramError>
  6444. impl aya::programs::tc::SchedClassifier
  6445. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6446. impl aya::programs::tc::SchedClassifier
  6447. pub fn aya::programs::tc::SchedClassifier::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6448. impl aya::programs::tc::SchedClassifier
  6449. pub fn aya::programs::tc::SchedClassifier::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6450. impl aya::programs::tc::SchedClassifier
  6451. pub fn aya::programs::tc::SchedClassifier::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6452. pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6453. impl aya::programs::tc::SchedClassifier
  6454. pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6455. impl aya::programs::MultiProgram for aya::programs::tc::SchedClassifier
  6456. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  6457. impl core::fmt::Debug for aya::programs::tc::SchedClassifier
  6458. pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6459. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier
  6460. pub fn aya::programs::tc::SchedClassifier::drop(&mut self)
  6461. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  6462. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  6463. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  6464. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  6465. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  6466. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  6467. impl core::marker::Freeze for aya::programs::tc::SchedClassifier
  6468. impl core::marker::Send for aya::programs::tc::SchedClassifier
  6469. impl core::marker::Sync for aya::programs::tc::SchedClassifier
  6470. impl core::marker::Unpin for aya::programs::tc::SchedClassifier
  6471. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier
  6472. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier
  6473. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifier where U: core::convert::From<T>
  6474. pub fn aya::programs::tc::SchedClassifier::into(self) -> U
  6475. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifier where U: core::convert::Into<T>
  6476. pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible
  6477. pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6478. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom<T>
  6479. pub type aya::programs::tc::SchedClassifier::Error = <U as core::convert::TryFrom<T>>::Error
  6480. pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6481. impl<T> core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + ?core::marker::Sized
  6482. pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId
  6483. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  6484. pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T
  6485. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  6486. pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T
  6487. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifier
  6488. pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T
  6489. pub struct aya::programs::tc::SchedClassifierLink(_)
  6490. impl aya::programs::tc::SchedClassifierLink
  6491. pub fn aya::programs::tc::SchedClassifierLink::attach_type(&self) -> core::result::Result<aya::programs::tc::TcAttachType, aya::programs::ProgramError>
  6492. pub fn aya::programs::tc::SchedClassifierLink::attached(if_name: &str, attach_type: aya::programs::tc::TcAttachType, priority: u16, handle: u32) -> core::result::Result<Self, std::io::error::Error>
  6493. pub fn aya::programs::tc::SchedClassifierLink::handle(&self) -> core::result::Result<u32, aya::programs::ProgramError>
  6494. pub fn aya::programs::tc::SchedClassifierLink::priority(&self) -> core::result::Result<u16, aya::programs::ProgramError>
  6495. impl aya::programs::MultiProgLink for aya::programs::tc::SchedClassifierLink
  6496. pub fn aya::programs::tc::SchedClassifierLink::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::links::LinkError>
  6497. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  6498. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  6499. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6500. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  6501. impl core::cmp::Eq for aya::programs::tc::SchedClassifierLink
  6502. impl core::cmp::PartialEq for aya::programs::tc::SchedClassifierLink
  6503. pub fn aya::programs::tc::SchedClassifierLink::eq(&self, other: &Self) -> bool
  6504. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::tc::SchedClassifierLink
  6505. pub type aya::programs::tc::SchedClassifierLink::Error = aya::programs::links::LinkError
  6506. pub fn aya::programs::tc::SchedClassifierLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  6507. impl core::convert::TryFrom<aya::programs::tc::SchedClassifierLink> for aya::programs::links::FdLink
  6508. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6509. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  6510. impl core::fmt::Debug for aya::programs::tc::SchedClassifierLink
  6511. pub fn aya::programs::tc::SchedClassifierLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6512. impl core::hash::Hash for aya::programs::tc::SchedClassifierLink
  6513. pub fn aya::programs::tc::SchedClassifierLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6514. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifierLink
  6515. pub fn aya::programs::tc::SchedClassifierLink::drop(&mut self)
  6516. impl equivalent::Equivalent<aya::programs::tc::SchedClassifierLink> for aya::programs::tc::SchedClassifierLinkId
  6517. pub fn aya::programs::tc::SchedClassifierLinkId::equivalent(&self, key: &aya::programs::tc::SchedClassifierLink) -> bool
  6518. impl<'a> core::convert::TryFrom<&'a aya::programs::tc::SchedClassifierLink> for &'a aya::programs::links::FdLink
  6519. pub type &'a aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6520. pub fn &'a aya::programs::links::FdLink::try_from(value: &'a aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  6521. impl core::marker::Freeze for aya::programs::tc::SchedClassifierLink
  6522. impl core::marker::Send for aya::programs::tc::SchedClassifierLink
  6523. impl core::marker::Sync for aya::programs::tc::SchedClassifierLink
  6524. impl core::marker::Unpin for aya::programs::tc::SchedClassifierLink
  6525. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLink
  6526. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLink
  6527. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::SchedClassifierLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6528. pub fn aya::programs::tc::SchedClassifierLink::equivalent(&self, key: &K) -> bool
  6529. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::From<T>
  6530. pub fn aya::programs::tc::SchedClassifierLink::into(self) -> U
  6531. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::Into<T>
  6532. pub type aya::programs::tc::SchedClassifierLink::Error = core::convert::Infallible
  6533. pub fn aya::programs::tc::SchedClassifierLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6534. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::TryFrom<T>
  6535. pub type aya::programs::tc::SchedClassifierLink::Error = <U as core::convert::TryFrom<T>>::Error
  6536. pub fn aya::programs::tc::SchedClassifierLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6537. impl<T> core::any::Any for aya::programs::tc::SchedClassifierLink where T: 'static + ?core::marker::Sized
  6538. pub fn aya::programs::tc::SchedClassifierLink::type_id(&self) -> core::any::TypeId
  6539. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifierLink where T: ?core::marker::Sized
  6540. pub fn aya::programs::tc::SchedClassifierLink::borrow(&self) -> &T
  6541. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifierLink where T: ?core::marker::Sized
  6542. pub fn aya::programs::tc::SchedClassifierLink::borrow_mut(&mut self) -> &mut T
  6543. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifierLink
  6544. pub fn aya::programs::tc::SchedClassifierLink::from(t: T) -> T
  6545. pub struct aya::programs::tc::SchedClassifierLinkId(_)
  6546. impl core::cmp::Eq for aya::programs::tc::SchedClassifierLinkId
  6547. impl core::cmp::PartialEq for aya::programs::tc::SchedClassifierLinkId
  6548. pub fn aya::programs::tc::SchedClassifierLinkId::eq(&self, other: &aya::programs::tc::SchedClassifierLinkId) -> bool
  6549. impl core::fmt::Debug for aya::programs::tc::SchedClassifierLinkId
  6550. pub fn aya::programs::tc::SchedClassifierLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6551. impl core::hash::Hash for aya::programs::tc::SchedClassifierLinkId
  6552. pub fn aya::programs::tc::SchedClassifierLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6553. impl core::marker::StructuralPartialEq for aya::programs::tc::SchedClassifierLinkId
  6554. impl equivalent::Equivalent<aya::programs::tc::SchedClassifierLink> for aya::programs::tc::SchedClassifierLinkId
  6555. pub fn aya::programs::tc::SchedClassifierLinkId::equivalent(&self, key: &aya::programs::tc::SchedClassifierLink) -> bool
  6556. impl core::marker::Freeze for aya::programs::tc::SchedClassifierLinkId
  6557. impl core::marker::Send for aya::programs::tc::SchedClassifierLinkId
  6558. impl core::marker::Sync for aya::programs::tc::SchedClassifierLinkId
  6559. impl core::marker::Unpin for aya::programs::tc::SchedClassifierLinkId
  6560. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLinkId
  6561. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLinkId
  6562. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::SchedClassifierLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6563. pub fn aya::programs::tc::SchedClassifierLinkId::equivalent(&self, key: &K) -> bool
  6564. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::From<T>
  6565. pub fn aya::programs::tc::SchedClassifierLinkId::into(self) -> U
  6566. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::Into<T>
  6567. pub type aya::programs::tc::SchedClassifierLinkId::Error = core::convert::Infallible
  6568. pub fn aya::programs::tc::SchedClassifierLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6569. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::TryFrom<T>
  6570. pub type aya::programs::tc::SchedClassifierLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6571. pub fn aya::programs::tc::SchedClassifierLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6572. impl<T> core::any::Any for aya::programs::tc::SchedClassifierLinkId where T: 'static + ?core::marker::Sized
  6573. pub fn aya::programs::tc::SchedClassifierLinkId::type_id(&self) -> core::any::TypeId
  6574. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifierLinkId where T: ?core::marker::Sized
  6575. pub fn aya::programs::tc::SchedClassifierLinkId::borrow(&self) -> &T
  6576. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifierLinkId where T: ?core::marker::Sized
  6577. pub fn aya::programs::tc::SchedClassifierLinkId::borrow_mut(&mut self) -> &mut T
  6578. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifierLinkId
  6579. pub fn aya::programs::tc::SchedClassifierLinkId::from(t: T) -> T
  6580. pub fn aya::programs::tc::qdisc_add_clsact(if_name: &str) -> core::result::Result<(), aya::programs::tc::TcError>
  6581. pub fn aya::programs::tc::qdisc_detach_program(if_name: &str, attach_type: aya::programs::tc::TcAttachType, name: &str) -> core::result::Result<(), aya::programs::tc::TcError>
  6582. pub mod aya::programs::tp_btf
  6583. pub struct aya::programs::tp_btf::BtfTracePoint
  6584. impl aya::programs::tp_btf::BtfTracePoint
  6585. pub const aya::programs::tp_btf::BtfTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  6586. pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLinkId, aya::programs::ProgramError>
  6587. pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  6588. impl aya::programs::tp_btf::BtfTracePoint
  6589. pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6590. pub fn aya::programs::tp_btf::BtfTracePoint::take_link(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLink, aya::programs::ProgramError>
  6591. impl aya::programs::tp_btf::BtfTracePoint
  6592. pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6593. impl aya::programs::tp_btf::BtfTracePoint
  6594. pub fn aya::programs::tp_btf::BtfTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6595. impl aya::programs::tp_btf::BtfTracePoint
  6596. pub unsafe fn aya::programs::tp_btf::BtfTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6597. impl aya::programs::tp_btf::BtfTracePoint
  6598. pub fn aya::programs::tp_btf::BtfTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6599. impl aya::programs::tp_btf::BtfTracePoint
  6600. pub fn aya::programs::tp_btf::BtfTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6601. pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6602. impl aya::programs::tp_btf::BtfTracePoint
  6603. pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6604. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint
  6605. pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6606. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint
  6607. pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self)
  6608. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  6609. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  6610. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  6611. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  6612. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  6613. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  6614. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePoint
  6615. impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint
  6616. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint
  6617. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint
  6618. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint
  6619. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint
  6620. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From<T>
  6621. pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U
  6622. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into<T>
  6623. pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible
  6624. pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6625. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom<T>
  6626. pub type aya::programs::tp_btf::BtfTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  6627. pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6628. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + ?core::marker::Sized
  6629. pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId
  6630. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  6631. pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T
  6632. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  6633. pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T
  6634. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePoint
  6635. pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T
  6636. pub struct aya::programs::tp_btf::BtfTracePointLink(_)
  6637. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  6638. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  6639. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6640. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  6641. impl core::cmp::Eq for aya::programs::tp_btf::BtfTracePointLink
  6642. impl core::cmp::PartialEq for aya::programs::tp_btf::BtfTracePointLink
  6643. pub fn aya::programs::tp_btf::BtfTracePointLink::eq(&self, other: &Self) -> bool
  6644. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::tp_btf::BtfTracePointLink
  6645. pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink
  6646. impl core::convert::From<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::links::FdLink
  6647. pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink
  6648. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLink
  6649. pub fn aya::programs::tp_btf::BtfTracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6650. impl core::hash::Hash for aya::programs::tp_btf::BtfTracePointLink
  6651. pub fn aya::programs::tp_btf::BtfTracePointLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6652. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePointLink
  6653. pub fn aya::programs::tp_btf::BtfTracePointLink::drop(&mut self)
  6654. impl equivalent::Equivalent<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::tp_btf::BtfTracePointLinkId
  6655. pub fn aya::programs::tp_btf::BtfTracePointLinkId::equivalent(&self, key: &aya::programs::tp_btf::BtfTracePointLink) -> bool
  6656. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePointLink
  6657. impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLink
  6658. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLink
  6659. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLink
  6660. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLink
  6661. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLink
  6662. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tp_btf::BtfTracePointLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6663. pub fn aya::programs::tp_btf::BtfTracePointLink::equivalent(&self, key: &K) -> bool
  6664. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::From<T>
  6665. pub fn aya::programs::tp_btf::BtfTracePointLink::into(self) -> U
  6666. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::Into<T>
  6667. pub type aya::programs::tp_btf::BtfTracePointLink::Error = core::convert::Infallible
  6668. pub fn aya::programs::tp_btf::BtfTracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6669. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::TryFrom<T>
  6670. pub type aya::programs::tp_btf::BtfTracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  6671. pub fn aya::programs::tp_btf::BtfTracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6672. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePointLink where T: 'static + ?core::marker::Sized
  6673. pub fn aya::programs::tp_btf::BtfTracePointLink::type_id(&self) -> core::any::TypeId
  6674. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePointLink where T: ?core::marker::Sized
  6675. pub fn aya::programs::tp_btf::BtfTracePointLink::borrow(&self) -> &T
  6676. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePointLink where T: ?core::marker::Sized
  6677. pub fn aya::programs::tp_btf::BtfTracePointLink::borrow_mut(&mut self) -> &mut T
  6678. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePointLink
  6679. pub fn aya::programs::tp_btf::BtfTracePointLink::from(t: T) -> T
  6680. pub struct aya::programs::tp_btf::BtfTracePointLinkId(_)
  6681. impl core::cmp::Eq for aya::programs::tp_btf::BtfTracePointLinkId
  6682. impl core::cmp::PartialEq for aya::programs::tp_btf::BtfTracePointLinkId
  6683. pub fn aya::programs::tp_btf::BtfTracePointLinkId::eq(&self, other: &aya::programs::tp_btf::BtfTracePointLinkId) -> bool
  6684. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLinkId
  6685. pub fn aya::programs::tp_btf::BtfTracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6686. impl core::hash::Hash for aya::programs::tp_btf::BtfTracePointLinkId
  6687. pub fn aya::programs::tp_btf::BtfTracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6688. impl core::marker::StructuralPartialEq for aya::programs::tp_btf::BtfTracePointLinkId
  6689. impl equivalent::Equivalent<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::tp_btf::BtfTracePointLinkId
  6690. pub fn aya::programs::tp_btf::BtfTracePointLinkId::equivalent(&self, key: &aya::programs::tp_btf::BtfTracePointLink) -> bool
  6691. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePointLinkId
  6692. impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLinkId
  6693. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLinkId
  6694. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLinkId
  6695. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId
  6696. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId
  6697. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tp_btf::BtfTracePointLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6698. pub fn aya::programs::tp_btf::BtfTracePointLinkId::equivalent(&self, key: &K) -> bool
  6699. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::From<T>
  6700. pub fn aya::programs::tp_btf::BtfTracePointLinkId::into(self) -> U
  6701. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::Into<T>
  6702. pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = core::convert::Infallible
  6703. pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6704. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::TryFrom<T>
  6705. pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6706. pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6707. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePointLinkId where T: 'static + ?core::marker::Sized
  6708. pub fn aya::programs::tp_btf::BtfTracePointLinkId::type_id(&self) -> core::any::TypeId
  6709. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePointLinkId where T: ?core::marker::Sized
  6710. pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow(&self) -> &T
  6711. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePointLinkId where T: ?core::marker::Sized
  6712. pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow_mut(&mut self) -> &mut T
  6713. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePointLinkId
  6714. pub fn aya::programs::tp_btf::BtfTracePointLinkId::from(t: T) -> T
  6715. pub mod aya::programs::trace_point
  6716. pub enum aya::programs::trace_point::TracePointError
  6717. pub aya::programs::trace_point::TracePointError::FileError
  6718. pub aya::programs::trace_point::TracePointError::FileError::filename: std::path::PathBuf
  6719. pub aya::programs::trace_point::TracePointError::FileError::io_error: std::io::error::Error
  6720. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  6721. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  6722. impl core::error::Error for aya::programs::trace_point::TracePointError
  6723. pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6724. impl core::fmt::Debug for aya::programs::trace_point::TracePointError
  6725. pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6726. impl core::fmt::Display for aya::programs::trace_point::TracePointError
  6727. pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6728. impl core::marker::Freeze for aya::programs::trace_point::TracePointError
  6729. impl core::marker::Send for aya::programs::trace_point::TracePointError
  6730. impl core::marker::Sync for aya::programs::trace_point::TracePointError
  6731. impl core::marker::Unpin for aya::programs::trace_point::TracePointError
  6732. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError
  6733. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError
  6734. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointError where U: core::convert::From<T>
  6735. pub fn aya::programs::trace_point::TracePointError::into(self) -> U
  6736. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointError where U: core::convert::Into<T>
  6737. pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible
  6738. pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6739. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom<T>
  6740. pub type aya::programs::trace_point::TracePointError::Error = <U as core::convert::TryFrom<T>>::Error
  6741. pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6742. impl<T> alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + ?core::marker::Sized
  6743. pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String
  6744. impl<T> core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + ?core::marker::Sized
  6745. pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId
  6746. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  6747. pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T
  6748. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  6749. pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T
  6750. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointError
  6751. pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T
  6752. pub struct aya::programs::trace_point::TracePoint
  6753. impl aya::programs::trace_point::TracePoint
  6754. pub const aya::programs::trace_point::TracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  6755. pub fn aya::programs::trace_point::TracePoint::attach(&mut self, category: &str, name: &str) -> core::result::Result<aya::programs::trace_point::TracePointLinkId, aya::programs::ProgramError>
  6756. pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6757. impl aya::programs::trace_point::TracePoint
  6758. pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6759. pub fn aya::programs::trace_point::TracePoint::take_link(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<aya::programs::trace_point::TracePointLink, aya::programs::ProgramError>
  6760. impl aya::programs::trace_point::TracePoint
  6761. pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6762. impl aya::programs::trace_point::TracePoint
  6763. pub fn aya::programs::trace_point::TracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6764. impl aya::programs::trace_point::TracePoint
  6765. pub fn aya::programs::trace_point::TracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6766. impl aya::programs::trace_point::TracePoint
  6767. pub fn aya::programs::trace_point::TracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6768. impl aya::programs::trace_point::TracePoint
  6769. pub fn aya::programs::trace_point::TracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6770. pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6771. impl aya::programs::trace_point::TracePoint
  6772. pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6773. impl core::fmt::Debug for aya::programs::trace_point::TracePoint
  6774. pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6775. impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint
  6776. pub fn aya::programs::trace_point::TracePoint::drop(&mut self)
  6777. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  6778. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  6779. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  6780. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  6781. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  6782. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  6783. impl core::marker::Freeze for aya::programs::trace_point::TracePoint
  6784. impl core::marker::Send for aya::programs::trace_point::TracePoint
  6785. impl core::marker::Sync for aya::programs::trace_point::TracePoint
  6786. impl core::marker::Unpin for aya::programs::trace_point::TracePoint
  6787. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint
  6788. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint
  6789. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePoint where U: core::convert::From<T>
  6790. pub fn aya::programs::trace_point::TracePoint::into(self) -> U
  6791. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePoint where U: core::convert::Into<T>
  6792. pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible
  6793. pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6794. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom<T>
  6795. pub type aya::programs::trace_point::TracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  6796. pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6797. impl<T> core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + ?core::marker::Sized
  6798. pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId
  6799. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  6800. pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T
  6801. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  6802. pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T
  6803. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePoint
  6804. pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T
  6805. pub struct aya::programs::trace_point::TracePointLink(_)
  6806. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  6807. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  6808. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6809. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  6810. impl core::cmp::Eq for aya::programs::trace_point::TracePointLink
  6811. impl core::cmp::PartialEq for aya::programs::trace_point::TracePointLink
  6812. pub fn aya::programs::trace_point::TracePointLink::eq(&self, other: &Self) -> bool
  6813. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::trace_point::TracePointLink
  6814. pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError
  6815. pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  6816. impl core::convert::TryFrom<aya::programs::trace_point::TracePointLink> for aya::programs::links::FdLink
  6817. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6818. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result<Self, Self::Error>
  6819. impl core::fmt::Debug for aya::programs::trace_point::TracePointLink
  6820. pub fn aya::programs::trace_point::TracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6821. impl core::hash::Hash for aya::programs::trace_point::TracePointLink
  6822. pub fn aya::programs::trace_point::TracePointLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6823. impl core::ops::drop::Drop for aya::programs::trace_point::TracePointLink
  6824. pub fn aya::programs::trace_point::TracePointLink::drop(&mut self)
  6825. impl equivalent::Equivalent<aya::programs::trace_point::TracePointLink> for aya::programs::trace_point::TracePointLinkId
  6826. pub fn aya::programs::trace_point::TracePointLinkId::equivalent(&self, key: &aya::programs::trace_point::TracePointLink) -> bool
  6827. impl core::marker::Freeze for aya::programs::trace_point::TracePointLink
  6828. impl core::marker::Send for aya::programs::trace_point::TracePointLink
  6829. impl core::marker::Sync for aya::programs::trace_point::TracePointLink
  6830. impl core::marker::Unpin for aya::programs::trace_point::TracePointLink
  6831. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLink
  6832. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLink
  6833. impl<Q, K> equivalent::Equivalent<K> for aya::programs::trace_point::TracePointLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6834. pub fn aya::programs::trace_point::TracePointLink::equivalent(&self, key: &K) -> bool
  6835. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointLink where U: core::convert::From<T>
  6836. pub fn aya::programs::trace_point::TracePointLink::into(self) -> U
  6837. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointLink where U: core::convert::Into<T>
  6838. pub type aya::programs::trace_point::TracePointLink::Error = core::convert::Infallible
  6839. pub fn aya::programs::trace_point::TracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6840. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointLink where U: core::convert::TryFrom<T>
  6841. pub type aya::programs::trace_point::TracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  6842. pub fn aya::programs::trace_point::TracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6843. impl<T> core::any::Any for aya::programs::trace_point::TracePointLink where T: 'static + ?core::marker::Sized
  6844. pub fn aya::programs::trace_point::TracePointLink::type_id(&self) -> core::any::TypeId
  6845. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointLink where T: ?core::marker::Sized
  6846. pub fn aya::programs::trace_point::TracePointLink::borrow(&self) -> &T
  6847. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointLink where T: ?core::marker::Sized
  6848. pub fn aya::programs::trace_point::TracePointLink::borrow_mut(&mut self) -> &mut T
  6849. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointLink
  6850. pub fn aya::programs::trace_point::TracePointLink::from(t: T) -> T
  6851. pub struct aya::programs::trace_point::TracePointLinkId(_)
  6852. impl core::cmp::Eq for aya::programs::trace_point::TracePointLinkId
  6853. impl core::cmp::PartialEq for aya::programs::trace_point::TracePointLinkId
  6854. pub fn aya::programs::trace_point::TracePointLinkId::eq(&self, other: &aya::programs::trace_point::TracePointLinkId) -> bool
  6855. impl core::fmt::Debug for aya::programs::trace_point::TracePointLinkId
  6856. pub fn aya::programs::trace_point::TracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6857. impl core::hash::Hash for aya::programs::trace_point::TracePointLinkId
  6858. pub fn aya::programs::trace_point::TracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6859. impl core::marker::StructuralPartialEq for aya::programs::trace_point::TracePointLinkId
  6860. impl equivalent::Equivalent<aya::programs::trace_point::TracePointLink> for aya::programs::trace_point::TracePointLinkId
  6861. pub fn aya::programs::trace_point::TracePointLinkId::equivalent(&self, key: &aya::programs::trace_point::TracePointLink) -> bool
  6862. impl core::marker::Freeze for aya::programs::trace_point::TracePointLinkId
  6863. impl core::marker::Send for aya::programs::trace_point::TracePointLinkId
  6864. impl core::marker::Sync for aya::programs::trace_point::TracePointLinkId
  6865. impl core::marker::Unpin for aya::programs::trace_point::TracePointLinkId
  6866. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLinkId
  6867. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLinkId
  6868. impl<Q, K> equivalent::Equivalent<K> for aya::programs::trace_point::TracePointLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6869. pub fn aya::programs::trace_point::TracePointLinkId::equivalent(&self, key: &K) -> bool
  6870. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::From<T>
  6871. pub fn aya::programs::trace_point::TracePointLinkId::into(self) -> U
  6872. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::Into<T>
  6873. pub type aya::programs::trace_point::TracePointLinkId::Error = core::convert::Infallible
  6874. pub fn aya::programs::trace_point::TracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6875. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::TryFrom<T>
  6876. pub type aya::programs::trace_point::TracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6877. pub fn aya::programs::trace_point::TracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6878. impl<T> core::any::Any for aya::programs::trace_point::TracePointLinkId where T: 'static + ?core::marker::Sized
  6879. pub fn aya::programs::trace_point::TracePointLinkId::type_id(&self) -> core::any::TypeId
  6880. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointLinkId where T: ?core::marker::Sized
  6881. pub fn aya::programs::trace_point::TracePointLinkId::borrow(&self) -> &T
  6882. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointLinkId where T: ?core::marker::Sized
  6883. pub fn aya::programs::trace_point::TracePointLinkId::borrow_mut(&mut self) -> &mut T
  6884. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointLinkId
  6885. pub fn aya::programs::trace_point::TracePointLinkId::from(t: T) -> T
  6886. pub mod aya::programs::uprobe
  6887. pub enum aya::programs::uprobe::ProcMapError
  6888. pub aya::programs::uprobe::ProcMapError::ParseLine
  6889. pub aya::programs::uprobe::ProcMapError::ParseLine::line: alloc::vec::Vec<u8>
  6890. pub aya::programs::uprobe::ProcMapError::ReadFile(std::io::error::Error)
  6891. impl core::convert::From<std::io::error::Error> for aya::programs::uprobe::ProcMapError
  6892. pub fn aya::programs::uprobe::ProcMapError::from(source: std::io::error::Error) -> Self
  6893. impl core::error::Error for aya::programs::uprobe::ProcMapError
  6894. pub fn aya::programs::uprobe::ProcMapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6895. impl core::fmt::Debug for aya::programs::uprobe::ProcMapError
  6896. pub fn aya::programs::uprobe::ProcMapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6897. impl core::fmt::Display for aya::programs::uprobe::ProcMapError
  6898. pub fn aya::programs::uprobe::ProcMapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6899. impl core::marker::Freeze for aya::programs::uprobe::ProcMapError
  6900. impl core::marker::Send for aya::programs::uprobe::ProcMapError
  6901. impl core::marker::Sync for aya::programs::uprobe::ProcMapError
  6902. impl core::marker::Unpin for aya::programs::uprobe::ProcMapError
  6903. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::ProcMapError
  6904. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::ProcMapError
  6905. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::ProcMapError where U: core::convert::From<T>
  6906. pub fn aya::programs::uprobe::ProcMapError::into(self) -> U
  6907. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::ProcMapError where U: core::convert::Into<T>
  6908. pub type aya::programs::uprobe::ProcMapError::Error = core::convert::Infallible
  6909. pub fn aya::programs::uprobe::ProcMapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6910. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::ProcMapError where U: core::convert::TryFrom<T>
  6911. pub type aya::programs::uprobe::ProcMapError::Error = <U as core::convert::TryFrom<T>>::Error
  6912. pub fn aya::programs::uprobe::ProcMapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6913. impl<T> alloc::string::ToString for aya::programs::uprobe::ProcMapError where T: core::fmt::Display + ?core::marker::Sized
  6914. pub fn aya::programs::uprobe::ProcMapError::to_string(&self) -> alloc::string::String
  6915. impl<T> core::any::Any for aya::programs::uprobe::ProcMapError where T: 'static + ?core::marker::Sized
  6916. pub fn aya::programs::uprobe::ProcMapError::type_id(&self) -> core::any::TypeId
  6917. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::ProcMapError where T: ?core::marker::Sized
  6918. pub fn aya::programs::uprobe::ProcMapError::borrow(&self) -> &T
  6919. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::ProcMapError where T: ?core::marker::Sized
  6920. pub fn aya::programs::uprobe::ProcMapError::borrow_mut(&mut self) -> &mut T
  6921. impl<T> core::convert::From<T> for aya::programs::uprobe::ProcMapError
  6922. pub fn aya::programs::uprobe::ProcMapError::from(t: T) -> T
  6923. pub enum aya::programs::uprobe::UProbeAttachLocation<'a>
  6924. pub aya::programs::uprobe::UProbeAttachLocation::AbsoluteOffset(u64)
  6925. pub aya::programs::uprobe::UProbeAttachLocation::Symbol(&'a str)
  6926. pub aya::programs::uprobe::UProbeAttachLocation::SymbolOffset(&'a str, u64)
  6927. impl core::convert::From<u64> for aya::programs::uprobe::UProbeAttachLocation<'static>
  6928. pub fn aya::programs::uprobe::UProbeAttachLocation<'static>::from(offset: u64) -> Self
  6929. impl<'a> core::convert::From<&'a str> for aya::programs::uprobe::UProbeAttachLocation<'a>
  6930. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::from(s: &'a str) -> Self
  6931. impl<'a> core::marker::Freeze for aya::programs::uprobe::UProbeAttachLocation<'a>
  6932. impl<'a> core::marker::Send for aya::programs::uprobe::UProbeAttachLocation<'a>
  6933. impl<'a> core::marker::Sync for aya::programs::uprobe::UProbeAttachLocation<'a>
  6934. impl<'a> core::marker::Unpin for aya::programs::uprobe::UProbeAttachLocation<'a>
  6935. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeAttachLocation<'a>
  6936. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeAttachLocation<'a>
  6937. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeAttachLocation<'a> where U: core::convert::From<T>
  6938. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::into(self) -> U
  6939. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeAttachLocation<'a> where U: core::convert::Into<T>
  6940. pub type aya::programs::uprobe::UProbeAttachLocation<'a>::Error = core::convert::Infallible
  6941. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6942. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeAttachLocation<'a> where U: core::convert::TryFrom<T>
  6943. pub type aya::programs::uprobe::UProbeAttachLocation<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  6944. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6945. impl<T> core::any::Any for aya::programs::uprobe::UProbeAttachLocation<'a> where T: 'static + ?core::marker::Sized
  6946. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::type_id(&self) -> core::any::TypeId
  6947. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeAttachLocation<'a> where T: ?core::marker::Sized
  6948. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::borrow(&self) -> &T
  6949. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeAttachLocation<'a> where T: ?core::marker::Sized
  6950. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::borrow_mut(&mut self) -> &mut T
  6951. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeAttachLocation<'a>
  6952. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::from(t: T) -> T
  6953. pub enum aya::programs::uprobe::UProbeError
  6954. pub aya::programs::uprobe::UProbeError::FileError
  6955. pub aya::programs::uprobe::UProbeError::FileError::filename: std::path::PathBuf
  6956. pub aya::programs::uprobe::UProbeError::FileError::io_error: std::io::error::Error
  6957. pub aya::programs::uprobe::UProbeError::InvalidLdSoCache
  6958. pub aya::programs::uprobe::UProbeError::InvalidLdSoCache::io_error: &'static std::io::error::Error
  6959. pub aya::programs::uprobe::UProbeError::InvalidTarget
  6960. pub aya::programs::uprobe::UProbeError::InvalidTarget::path: std::path::PathBuf
  6961. pub aya::programs::uprobe::UProbeError::ProcMap
  6962. pub aya::programs::uprobe::UProbeError::ProcMap::pid: i32
  6963. pub aya::programs::uprobe::UProbeError::ProcMap::source: aya::programs::uprobe::ProcMapError
  6964. pub aya::programs::uprobe::UProbeError::SymbolError
  6965. pub aya::programs::uprobe::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>
  6966. pub aya::programs::uprobe::UProbeError::SymbolError::symbol: alloc::string::String
  6967. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  6968. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  6969. impl core::error::Error for aya::programs::uprobe::UProbeError
  6970. pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6971. impl core::fmt::Debug for aya::programs::uprobe::UProbeError
  6972. pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6973. impl core::fmt::Display for aya::programs::uprobe::UProbeError
  6974. pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6975. impl core::marker::Freeze for aya::programs::uprobe::UProbeError
  6976. impl core::marker::Send for aya::programs::uprobe::UProbeError
  6977. impl core::marker::Sync for aya::programs::uprobe::UProbeError
  6978. impl core::marker::Unpin for aya::programs::uprobe::UProbeError
  6979. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError
  6980. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError
  6981. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeError where U: core::convert::From<T>
  6982. pub fn aya::programs::uprobe::UProbeError::into(self) -> U
  6983. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeError where U: core::convert::Into<T>
  6984. pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible
  6985. pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6986. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom<T>
  6987. pub type aya::programs::uprobe::UProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  6988. pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6989. impl<T> alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + ?core::marker::Sized
  6990. pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String
  6991. impl<T> core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + ?core::marker::Sized
  6992. pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId
  6993. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  6994. pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T
  6995. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  6996. pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T
  6997. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeError
  6998. pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T
  6999. pub struct aya::programs::uprobe::UProbe
  7000. impl aya::programs::uprobe::UProbe
  7001. pub const aya::programs::uprobe::UProbe::PROGRAM_TYPE: aya::programs::ProgramType
  7002. pub fn aya::programs::uprobe::UProbe::attach<'loc, T: core::convert::AsRef<std::path::Path>, Loc: core::convert::Into<aya::programs::uprobe::UProbeAttachLocation<'loc>>>(&mut self, location: Loc, target: T, pid: core::option::Option<libc::unix::pid_t>, cookie: core::option::Option<u64>) -> core::result::Result<aya::programs::uprobe::UProbeLinkId, aya::programs::ProgramError>
  7003. pub fn aya::programs::uprobe::UProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  7004. pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind
  7005. pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7006. impl aya::programs::uprobe::UProbe
  7007. pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7008. pub fn aya::programs::uprobe::UProbe::take_link(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<aya::programs::uprobe::UProbeLink, aya::programs::ProgramError>
  7009. impl aya::programs::uprobe::UProbe
  7010. pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7011. impl aya::programs::uprobe::UProbe
  7012. pub unsafe fn aya::programs::uprobe::UProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  7013. impl aya::programs::uprobe::UProbe
  7014. pub fn aya::programs::uprobe::UProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7015. impl aya::programs::uprobe::UProbe
  7016. pub fn aya::programs::uprobe::UProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7017. pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7018. impl aya::programs::uprobe::UProbe
  7019. pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7020. impl core::fmt::Debug for aya::programs::uprobe::UProbe
  7021. pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7022. impl core::ops::drop::Drop for aya::programs::uprobe::UProbe
  7023. pub fn aya::programs::uprobe::UProbe::drop(&mut self)
  7024. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  7025. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7026. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7027. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  7028. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7029. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7030. impl core::marker::Freeze for aya::programs::uprobe::UProbe
  7031. impl core::marker::Send for aya::programs::uprobe::UProbe
  7032. impl core::marker::Sync for aya::programs::uprobe::UProbe
  7033. impl core::marker::Unpin for aya::programs::uprobe::UProbe
  7034. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe
  7035. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe
  7036. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbe where U: core::convert::From<T>
  7037. pub fn aya::programs::uprobe::UProbe::into(self) -> U
  7038. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbe where U: core::convert::Into<T>
  7039. pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible
  7040. pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7041. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbe where U: core::convert::TryFrom<T>
  7042. pub type aya::programs::uprobe::UProbe::Error = <U as core::convert::TryFrom<T>>::Error
  7043. pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7044. impl<T> core::any::Any for aya::programs::uprobe::UProbe where T: 'static + ?core::marker::Sized
  7045. pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId
  7046. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  7047. pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T
  7048. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  7049. pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T
  7050. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbe
  7051. pub fn aya::programs::uprobe::UProbe::from(t: T) -> T
  7052. pub struct aya::programs::uprobe::UProbeLink(_)
  7053. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  7054. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  7055. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7056. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  7057. impl core::cmp::Eq for aya::programs::uprobe::UProbeLink
  7058. impl core::cmp::PartialEq for aya::programs::uprobe::UProbeLink
  7059. pub fn aya::programs::uprobe::UProbeLink::eq(&self, other: &Self) -> bool
  7060. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::uprobe::UProbeLink
  7061. pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError
  7062. pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  7063. impl core::convert::TryFrom<aya::programs::uprobe::UProbeLink> for aya::programs::links::FdLink
  7064. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  7065. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result<Self, Self::Error>
  7066. impl core::fmt::Debug for aya::programs::uprobe::UProbeLink
  7067. pub fn aya::programs::uprobe::UProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7068. impl core::hash::Hash for aya::programs::uprobe::UProbeLink
  7069. pub fn aya::programs::uprobe::UProbeLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  7070. impl core::ops::drop::Drop for aya::programs::uprobe::UProbeLink
  7071. pub fn aya::programs::uprobe::UProbeLink::drop(&mut self)
  7072. impl equivalent::Equivalent<aya::programs::uprobe::UProbeLink> for aya::programs::uprobe::UProbeLinkId
  7073. pub fn aya::programs::uprobe::UProbeLinkId::equivalent(&self, key: &aya::programs::uprobe::UProbeLink) -> bool
  7074. impl core::marker::Freeze for aya::programs::uprobe::UProbeLink
  7075. impl core::marker::Send for aya::programs::uprobe::UProbeLink
  7076. impl core::marker::Sync for aya::programs::uprobe::UProbeLink
  7077. impl core::marker::Unpin for aya::programs::uprobe::UProbeLink
  7078. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLink
  7079. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLink
  7080. impl<Q, K> equivalent::Equivalent<K> for aya::programs::uprobe::UProbeLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7081. pub fn aya::programs::uprobe::UProbeLink::equivalent(&self, key: &K) -> bool
  7082. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeLink where U: core::convert::From<T>
  7083. pub fn aya::programs::uprobe::UProbeLink::into(self) -> U
  7084. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeLink where U: core::convert::Into<T>
  7085. pub type aya::programs::uprobe::UProbeLink::Error = core::convert::Infallible
  7086. pub fn aya::programs::uprobe::UProbeLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7087. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeLink where U: core::convert::TryFrom<T>
  7088. pub type aya::programs::uprobe::UProbeLink::Error = <U as core::convert::TryFrom<T>>::Error
  7089. pub fn aya::programs::uprobe::UProbeLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7090. impl<T> core::any::Any for aya::programs::uprobe::UProbeLink where T: 'static + ?core::marker::Sized
  7091. pub fn aya::programs::uprobe::UProbeLink::type_id(&self) -> core::any::TypeId
  7092. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeLink where T: ?core::marker::Sized
  7093. pub fn aya::programs::uprobe::UProbeLink::borrow(&self) -> &T
  7094. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeLink where T: ?core::marker::Sized
  7095. pub fn aya::programs::uprobe::UProbeLink::borrow_mut(&mut self) -> &mut T
  7096. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeLink
  7097. pub fn aya::programs::uprobe::UProbeLink::from(t: T) -> T
  7098. pub struct aya::programs::uprobe::UProbeLinkId(_)
  7099. impl core::cmp::Eq for aya::programs::uprobe::UProbeLinkId
  7100. impl core::cmp::PartialEq for aya::programs::uprobe::UProbeLinkId
  7101. pub fn aya::programs::uprobe::UProbeLinkId::eq(&self, other: &aya::programs::uprobe::UProbeLinkId) -> bool
  7102. impl core::fmt::Debug for aya::programs::uprobe::UProbeLinkId
  7103. pub fn aya::programs::uprobe::UProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7104. impl core::hash::Hash for aya::programs::uprobe::UProbeLinkId
  7105. pub fn aya::programs::uprobe::UProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  7106. impl core::marker::StructuralPartialEq for aya::programs::uprobe::UProbeLinkId
  7107. impl equivalent::Equivalent<aya::programs::uprobe::UProbeLink> for aya::programs::uprobe::UProbeLinkId
  7108. pub fn aya::programs::uprobe::UProbeLinkId::equivalent(&self, key: &aya::programs::uprobe::UProbeLink) -> bool
  7109. impl core::marker::Freeze for aya::programs::uprobe::UProbeLinkId
  7110. impl core::marker::Send for aya::programs::uprobe::UProbeLinkId
  7111. impl core::marker::Sync for aya::programs::uprobe::UProbeLinkId
  7112. impl core::marker::Unpin for aya::programs::uprobe::UProbeLinkId
  7113. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLinkId
  7114. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLinkId
  7115. impl<Q, K> equivalent::Equivalent<K> for aya::programs::uprobe::UProbeLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7116. pub fn aya::programs::uprobe::UProbeLinkId::equivalent(&self, key: &K) -> bool
  7117. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::From<T>
  7118. pub fn aya::programs::uprobe::UProbeLinkId::into(self) -> U
  7119. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::Into<T>
  7120. pub type aya::programs::uprobe::UProbeLinkId::Error = core::convert::Infallible
  7121. pub fn aya::programs::uprobe::UProbeLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7122. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::TryFrom<T>
  7123. pub type aya::programs::uprobe::UProbeLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  7124. pub fn aya::programs::uprobe::UProbeLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7125. impl<T> core::any::Any for aya::programs::uprobe::UProbeLinkId where T: 'static + ?core::marker::Sized
  7126. pub fn aya::programs::uprobe::UProbeLinkId::type_id(&self) -> core::any::TypeId
  7127. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeLinkId where T: ?core::marker::Sized
  7128. pub fn aya::programs::uprobe::UProbeLinkId::borrow(&self) -> &T
  7129. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeLinkId where T: ?core::marker::Sized
  7130. pub fn aya::programs::uprobe::UProbeLinkId::borrow_mut(&mut self) -> &mut T
  7131. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeLinkId
  7132. pub fn aya::programs::uprobe::UProbeLinkId::from(t: T) -> T
  7133. pub mod aya::programs::xdp
  7134. pub enum aya::programs::xdp::XdpError
  7135. pub aya::programs::xdp::XdpError::NetlinkError(aya::sys::netlink::NetlinkError)
  7136. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  7137. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  7138. impl core::error::Error for aya::programs::xdp::XdpError
  7139. pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7140. impl core::fmt::Debug for aya::programs::xdp::XdpError
  7141. pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7142. impl core::fmt::Display for aya::programs::xdp::XdpError
  7143. pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7144. impl core::marker::Freeze for aya::programs::xdp::XdpError
  7145. impl core::marker::Send for aya::programs::xdp::XdpError
  7146. impl core::marker::Sync for aya::programs::xdp::XdpError
  7147. impl core::marker::Unpin for aya::programs::xdp::XdpError
  7148. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError
  7149. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError
  7150. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpError where U: core::convert::From<T>
  7151. pub fn aya::programs::xdp::XdpError::into(self) -> U
  7152. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpError where U: core::convert::Into<T>
  7153. pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible
  7154. pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7155. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpError where U: core::convert::TryFrom<T>
  7156. pub type aya::programs::xdp::XdpError::Error = <U as core::convert::TryFrom<T>>::Error
  7157. pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7158. impl<T> alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + ?core::marker::Sized
  7159. pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String
  7160. impl<T> core::any::Any for aya::programs::xdp::XdpError where T: 'static + ?core::marker::Sized
  7161. pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId
  7162. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  7163. pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T
  7164. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  7165. pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T
  7166. impl<T> core::convert::From<T> for aya::programs::xdp::XdpError
  7167. pub fn aya::programs::xdp::XdpError::from(t: T) -> T
  7168. pub struct aya::programs::xdp::Xdp
  7169. impl aya::programs::xdp::Xdp
  7170. pub const aya::programs::xdp::Xdp::PROGRAM_TYPE: aya::programs::ProgramType
  7171. pub fn aya::programs::xdp::Xdp::attach(&mut self, interface: &str, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7172. pub fn aya::programs::xdp::Xdp::attach_to_if_index(&mut self, if_index: u32, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7173. pub fn aya::programs::xdp::Xdp::attach_to_link(&mut self, link: aya::programs::xdp::XdpLink) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7174. pub fn aya::programs::xdp::Xdp::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  7175. pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7176. impl aya::programs::xdp::Xdp
  7177. pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7178. pub fn aya::programs::xdp::Xdp::take_link(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<aya::programs::xdp::XdpLink, aya::programs::ProgramError>
  7179. impl aya::programs::xdp::Xdp
  7180. pub fn aya::programs::xdp::Xdp::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7181. impl aya::programs::xdp::Xdp
  7182. pub fn aya::programs::xdp::Xdp::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  7183. impl aya::programs::xdp::Xdp
  7184. pub fn aya::programs::xdp::Xdp::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7185. impl aya::programs::xdp::Xdp
  7186. pub fn aya::programs::xdp::Xdp::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7187. pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7188. impl aya::programs::xdp::Xdp
  7189. pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7190. impl core::fmt::Debug for aya::programs::xdp::Xdp
  7191. pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7192. impl core::ops::drop::Drop for aya::programs::xdp::Xdp
  7193. pub fn aya::programs::xdp::Xdp::drop(&mut self)
  7194. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  7195. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7196. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7197. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  7198. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7199. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7200. impl core::marker::Freeze for aya::programs::xdp::Xdp
  7201. impl core::marker::Send for aya::programs::xdp::Xdp
  7202. impl core::marker::Sync for aya::programs::xdp::Xdp
  7203. impl core::marker::Unpin for aya::programs::xdp::Xdp
  7204. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp
  7205. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp
  7206. impl<T, U> core::convert::Into<U> for aya::programs::xdp::Xdp where U: core::convert::From<T>
  7207. pub fn aya::programs::xdp::Xdp::into(self) -> U
  7208. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::Xdp where U: core::convert::Into<T>
  7209. pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible
  7210. pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7211. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::Xdp where U: core::convert::TryFrom<T>
  7212. pub type aya::programs::xdp::Xdp::Error = <U as core::convert::TryFrom<T>>::Error
  7213. pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7214. impl<T> core::any::Any for aya::programs::xdp::Xdp where T: 'static + ?core::marker::Sized
  7215. pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId
  7216. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  7217. pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T
  7218. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  7219. pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T
  7220. impl<T> core::convert::From<T> for aya::programs::xdp::Xdp
  7221. pub fn aya::programs::xdp::Xdp::from(t: T) -> T
  7222. pub struct aya::programs::xdp::XdpFlags(_)
  7223. impl aya::programs::xdp::XdpFlags
  7224. pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self
  7225. pub const aya::programs::xdp::XdpFlags::HW_MODE: Self
  7226. pub const aya::programs::xdp::XdpFlags::REPLACE: Self
  7227. pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self
  7228. pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self
  7229. impl aya::programs::xdp::XdpFlags
  7230. pub const fn aya::programs::xdp::XdpFlags::all() -> Self
  7231. pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  7232. pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self
  7233. pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool
  7234. pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self
  7235. pub const fn aya::programs::xdp::XdpFlags::empty() -> Self
  7236. pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option<Self>
  7237. pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self
  7238. pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self
  7239. pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option<Self>
  7240. pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self)
  7241. pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self
  7242. pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool
  7243. pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool
  7244. pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool
  7245. pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self)
  7246. pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool)
  7247. pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self
  7248. pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self)
  7249. pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self
  7250. impl aya::programs::xdp::XdpFlags
  7251. pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  7252. pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames<aya::programs::xdp::XdpFlags>
  7253. impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags
  7254. pub type aya::programs::xdp::XdpFlags::Bits = u32
  7255. pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag<aya::programs::xdp::XdpFlags>]
  7256. pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  7257. pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags
  7258. impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags
  7259. pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags
  7260. pub type aya::programs::xdp::XdpFlags::Primitive = u32
  7261. impl core::clone::Clone for aya::programs::xdp::XdpFlags
  7262. pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags
  7263. impl core::default::Default for aya::programs::xdp::XdpFlags
  7264. pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags
  7265. impl core::fmt::Binary for aya::programs::xdp::XdpFlags
  7266. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7267. impl core::fmt::Debug for aya::programs::xdp::XdpFlags
  7268. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7269. impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags
  7270. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7271. impl core::fmt::Octal for aya::programs::xdp::XdpFlags
  7272. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7273. impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags
  7274. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7275. impl core::iter::traits::collect::Extend<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7276. pub fn aya::programs::xdp::XdpFlags::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  7277. impl core::iter::traits::collect::FromIterator<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7278. pub fn aya::programs::xdp::XdpFlags::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  7279. impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags
  7280. pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  7281. pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags
  7282. pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter
  7283. impl core::marker::Copy for aya::programs::xdp::XdpFlags
  7284. impl core::ops::arith::Sub for aya::programs::xdp::XdpFlags
  7285. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7286. pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self
  7287. impl core::ops::arith::SubAssign for aya::programs::xdp::XdpFlags
  7288. pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self)
  7289. impl core::ops::bit::BitAnd for aya::programs::xdp::XdpFlags
  7290. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7291. pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self
  7292. impl core::ops::bit::BitAndAssign for aya::programs::xdp::XdpFlags
  7293. pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self)
  7294. impl core::ops::bit::BitOr for aya::programs::xdp::XdpFlags
  7295. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7296. pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self
  7297. impl core::ops::bit::BitOrAssign for aya::programs::xdp::XdpFlags
  7298. pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self)
  7299. impl core::ops::bit::BitXor for aya::programs::xdp::XdpFlags
  7300. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7301. pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self
  7302. impl core::ops::bit::BitXorAssign for aya::programs::xdp::XdpFlags
  7303. pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self)
  7304. impl core::ops::bit::Not for aya::programs::xdp::XdpFlags
  7305. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7306. pub fn aya::programs::xdp::XdpFlags::not(self) -> Self
  7307. impl core::marker::Freeze for aya::programs::xdp::XdpFlags
  7308. impl core::marker::Send for aya::programs::xdp::XdpFlags
  7309. impl core::marker::Sync for aya::programs::xdp::XdpFlags
  7310. impl core::marker::Unpin for aya::programs::xdp::XdpFlags
  7311. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags
  7312. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags
  7313. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpFlags where U: core::convert::From<T>
  7314. pub fn aya::programs::xdp::XdpFlags::into(self) -> U
  7315. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpFlags where U: core::convert::Into<T>
  7316. pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible
  7317. pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7318. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom<T>
  7319. pub type aya::programs::xdp::XdpFlags::Error = <U as core::convert::TryFrom<T>>::Error
  7320. pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7321. impl<T> alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  7322. pub type aya::programs::xdp::XdpFlags::Owned = T
  7323. pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T)
  7324. pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T
  7325. impl<T> core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + ?core::marker::Sized
  7326. pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId
  7327. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  7328. pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T
  7329. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  7330. pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T
  7331. impl<T> core::clone::CloneToUninit for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  7332. pub unsafe fn aya::programs::xdp::XdpFlags::clone_to_uninit(&self, dest: *mut u8)
  7333. impl<T> core::convert::From<T> for aya::programs::xdp::XdpFlags
  7334. pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T
  7335. pub struct aya::programs::xdp::XdpLink(_)
  7336. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  7337. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  7338. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7339. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  7340. impl core::cmp::Eq for aya::programs::xdp::XdpLink
  7341. impl core::cmp::PartialEq for aya::programs::xdp::XdpLink
  7342. pub fn aya::programs::xdp::XdpLink::eq(&self, other: &Self) -> bool
  7343. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::xdp::XdpLink
  7344. pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError
  7345. pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  7346. impl core::convert::TryFrom<aya::programs::xdp::XdpLink> for aya::programs::links::FdLink
  7347. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  7348. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result<Self, Self::Error>
  7349. impl core::fmt::Debug for aya::programs::xdp::XdpLink
  7350. pub fn aya::programs::xdp::XdpLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7351. impl core::hash::Hash for aya::programs::xdp::XdpLink
  7352. pub fn aya::programs::xdp::XdpLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  7353. impl core::ops::drop::Drop for aya::programs::xdp::XdpLink
  7354. pub fn aya::programs::xdp::XdpLink::drop(&mut self)
  7355. impl equivalent::Equivalent<aya::programs::xdp::XdpLink> for aya::programs::xdp::XdpLinkId
  7356. pub fn aya::programs::xdp::XdpLinkId::equivalent(&self, key: &aya::programs::xdp::XdpLink) -> bool
  7357. impl core::marker::Freeze for aya::programs::xdp::XdpLink
  7358. impl core::marker::Send for aya::programs::xdp::XdpLink
  7359. impl core::marker::Sync for aya::programs::xdp::XdpLink
  7360. impl core::marker::Unpin for aya::programs::xdp::XdpLink
  7361. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLink
  7362. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLink
  7363. impl<Q, K> equivalent::Equivalent<K> for aya::programs::xdp::XdpLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7364. pub fn aya::programs::xdp::XdpLink::equivalent(&self, key: &K) -> bool
  7365. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpLink where U: core::convert::From<T>
  7366. pub fn aya::programs::xdp::XdpLink::into(self) -> U
  7367. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpLink where U: core::convert::Into<T>
  7368. pub type aya::programs::xdp::XdpLink::Error = core::convert::Infallible
  7369. pub fn aya::programs::xdp::XdpLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7370. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpLink where U: core::convert::TryFrom<T>
  7371. pub type aya::programs::xdp::XdpLink::Error = <U as core::convert::TryFrom<T>>::Error
  7372. pub fn aya::programs::xdp::XdpLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7373. impl<T> core::any::Any for aya::programs::xdp::XdpLink where T: 'static + ?core::marker::Sized
  7374. pub fn aya::programs::xdp::XdpLink::type_id(&self) -> core::any::TypeId
  7375. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpLink where T: ?core::marker::Sized
  7376. pub fn aya::programs::xdp::XdpLink::borrow(&self) -> &T
  7377. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpLink where T: ?core::marker::Sized
  7378. pub fn aya::programs::xdp::XdpLink::borrow_mut(&mut self) -> &mut T
  7379. impl<T> core::convert::From<T> for aya::programs::xdp::XdpLink
  7380. pub fn aya::programs::xdp::XdpLink::from(t: T) -> T
  7381. pub struct aya::programs::xdp::XdpLinkId(_)
  7382. impl core::cmp::Eq for aya::programs::xdp::XdpLinkId
  7383. impl core::cmp::PartialEq for aya::programs::xdp::XdpLinkId
  7384. pub fn aya::programs::xdp::XdpLinkId::eq(&self, other: &aya::programs::xdp::XdpLinkId) -> bool
  7385. impl core::fmt::Debug for aya::programs::xdp::XdpLinkId
  7386. pub fn aya::programs::xdp::XdpLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7387. impl core::hash::Hash for aya::programs::xdp::XdpLinkId
  7388. pub fn aya::programs::xdp::XdpLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  7389. impl core::marker::StructuralPartialEq for aya::programs::xdp::XdpLinkId
  7390. impl equivalent::Equivalent<aya::programs::xdp::XdpLink> for aya::programs::xdp::XdpLinkId
  7391. pub fn aya::programs::xdp::XdpLinkId::equivalent(&self, key: &aya::programs::xdp::XdpLink) -> bool
  7392. impl core::marker::Freeze for aya::programs::xdp::XdpLinkId
  7393. impl core::marker::Send for aya::programs::xdp::XdpLinkId
  7394. impl core::marker::Sync for aya::programs::xdp::XdpLinkId
  7395. impl core::marker::Unpin for aya::programs::xdp::XdpLinkId
  7396. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLinkId
  7397. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLinkId
  7398. impl<Q, K> equivalent::Equivalent<K> for aya::programs::xdp::XdpLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7399. pub fn aya::programs::xdp::XdpLinkId::equivalent(&self, key: &K) -> bool
  7400. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpLinkId where U: core::convert::From<T>
  7401. pub fn aya::programs::xdp::XdpLinkId::into(self) -> U
  7402. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpLinkId where U: core::convert::Into<T>
  7403. pub type aya::programs::xdp::XdpLinkId::Error = core::convert::Infallible
  7404. pub fn aya::programs::xdp::XdpLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7405. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpLinkId where U: core::convert::TryFrom<T>
  7406. pub type aya::programs::xdp::XdpLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  7407. pub fn aya::programs::xdp::XdpLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7408. impl<T> core::any::Any for aya::programs::xdp::XdpLinkId where T: 'static + ?core::marker::Sized
  7409. pub fn aya::programs::xdp::XdpLinkId::type_id(&self) -> core::any::TypeId
  7410. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpLinkId where T: ?core::marker::Sized
  7411. pub fn aya::programs::xdp::XdpLinkId::borrow(&self) -> &T
  7412. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpLinkId where T: ?core::marker::Sized
  7413. pub fn aya::programs::xdp::XdpLinkId::borrow_mut(&mut self) -> &mut T
  7414. impl<T> core::convert::From<T> for aya::programs::xdp::XdpLinkId
  7415. pub fn aya::programs::xdp::XdpLinkId::from(t: T) -> T
  7416. pub enum aya::programs::CgroupAttachMode
  7417. pub aya::programs::CgroupAttachMode::AllowMultiple
  7418. pub aya::programs::CgroupAttachMode::AllowOverride
  7419. pub aya::programs::CgroupAttachMode::Single
  7420. impl core::clone::Clone for aya::programs::links::CgroupAttachMode
  7421. pub fn aya::programs::links::CgroupAttachMode::clone(&self) -> aya::programs::links::CgroupAttachMode
  7422. impl core::convert::From<aya::programs::links::CgroupAttachMode> for u32
  7423. pub fn u32::from(mode: aya::programs::links::CgroupAttachMode) -> Self
  7424. impl core::default::Default for aya::programs::links::CgroupAttachMode
  7425. pub fn aya::programs::links::CgroupAttachMode::default() -> aya::programs::links::CgroupAttachMode
  7426. impl core::fmt::Debug for aya::programs::links::CgroupAttachMode
  7427. pub fn aya::programs::links::CgroupAttachMode::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7428. impl core::marker::Copy for aya::programs::links::CgroupAttachMode
  7429. impl core::marker::Freeze for aya::programs::links::CgroupAttachMode
  7430. impl core::marker::Send for aya::programs::links::CgroupAttachMode
  7431. impl core::marker::Sync for aya::programs::links::CgroupAttachMode
  7432. impl core::marker::Unpin for aya::programs::links::CgroupAttachMode
  7433. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::CgroupAttachMode
  7434. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::CgroupAttachMode
  7435. impl<T, U> core::convert::Into<U> for aya::programs::links::CgroupAttachMode where U: core::convert::From<T>
  7436. pub fn aya::programs::links::CgroupAttachMode::into(self) -> U
  7437. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::CgroupAttachMode where U: core::convert::Into<T>
  7438. pub type aya::programs::links::CgroupAttachMode::Error = core::convert::Infallible
  7439. pub fn aya::programs::links::CgroupAttachMode::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7440. impl<T, U> core::convert::TryInto<U> for aya::programs::links::CgroupAttachMode where U: core::convert::TryFrom<T>
  7441. pub type aya::programs::links::CgroupAttachMode::Error = <U as core::convert::TryFrom<T>>::Error
  7442. pub fn aya::programs::links::CgroupAttachMode::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7443. impl<T> alloc::borrow::ToOwned for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  7444. pub type aya::programs::links::CgroupAttachMode::Owned = T
  7445. pub fn aya::programs::links::CgroupAttachMode::clone_into(&self, target: &mut T)
  7446. pub fn aya::programs::links::CgroupAttachMode::to_owned(&self) -> T
  7447. impl<T> core::any::Any for aya::programs::links::CgroupAttachMode where T: 'static + ?core::marker::Sized
  7448. pub fn aya::programs::links::CgroupAttachMode::type_id(&self) -> core::any::TypeId
  7449. impl<T> core::borrow::Borrow<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  7450. pub fn aya::programs::links::CgroupAttachMode::borrow(&self) -> &T
  7451. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  7452. pub fn aya::programs::links::CgroupAttachMode::borrow_mut(&mut self) -> &mut T
  7453. impl<T> core::clone::CloneToUninit for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  7454. pub unsafe fn aya::programs::links::CgroupAttachMode::clone_to_uninit(&self, dest: *mut u8)
  7455. impl<T> core::convert::From<T> for aya::programs::links::CgroupAttachMode
  7456. pub fn aya::programs::links::CgroupAttachMode::from(t: T) -> T
  7457. pub enum aya::programs::CgroupSkbAttachType
  7458. pub aya::programs::CgroupSkbAttachType::Egress
  7459. pub aya::programs::CgroupSkbAttachType::Ingress
  7460. impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType
  7461. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType
  7462. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType
  7463. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7464. impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType
  7465. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbAttachType
  7466. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType
  7467. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType
  7468. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType
  7469. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  7470. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  7471. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From<T>
  7472. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U
  7473. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into<T>
  7474. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible
  7475. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7476. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom<T>
  7477. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  7478. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7479. impl<T> alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  7480. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T
  7481. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T)
  7482. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T
  7483. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + ?core::marker::Sized
  7484. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId
  7485. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  7486. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T
  7487. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  7488. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T
  7489. impl<T> core::clone::CloneToUninit for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  7490. pub unsafe fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_to_uninit(&self, dest: *mut u8)
  7491. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbAttachType
  7492. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T
  7493. pub enum aya::programs::ExtensionError
  7494. pub aya::programs::ExtensionError::NoBTF
  7495. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  7496. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  7497. impl core::error::Error for aya::programs::extension::ExtensionError
  7498. impl core::fmt::Debug for aya::programs::extension::ExtensionError
  7499. pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7500. impl core::fmt::Display for aya::programs::extension::ExtensionError
  7501. pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7502. impl core::marker::Freeze for aya::programs::extension::ExtensionError
  7503. impl core::marker::Send for aya::programs::extension::ExtensionError
  7504. impl core::marker::Sync for aya::programs::extension::ExtensionError
  7505. impl core::marker::Unpin for aya::programs::extension::ExtensionError
  7506. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError
  7507. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError
  7508. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionError where U: core::convert::From<T>
  7509. pub fn aya::programs::extension::ExtensionError::into(self) -> U
  7510. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionError where U: core::convert::Into<T>
  7511. pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible
  7512. pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7513. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionError where U: core::convert::TryFrom<T>
  7514. pub type aya::programs::extension::ExtensionError::Error = <U as core::convert::TryFrom<T>>::Error
  7515. pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7516. impl<T> alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + ?core::marker::Sized
  7517. pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String
  7518. impl<T> core::any::Any for aya::programs::extension::ExtensionError where T: 'static + ?core::marker::Sized
  7519. pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId
  7520. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  7521. pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T
  7522. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  7523. pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T
  7524. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionError
  7525. pub fn aya::programs::extension::ExtensionError::from(t: T) -> T
  7526. pub enum aya::programs::KProbeError
  7527. pub aya::programs::KProbeError::FileError
  7528. pub aya::programs::KProbeError::FileError::filename: std::path::PathBuf
  7529. pub aya::programs::KProbeError::FileError::io_error: std::io::error::Error
  7530. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  7531. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  7532. impl core::error::Error for aya::programs::kprobe::KProbeError
  7533. pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7534. impl core::fmt::Debug for aya::programs::kprobe::KProbeError
  7535. pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7536. impl core::fmt::Display for aya::programs::kprobe::KProbeError
  7537. pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7538. impl core::marker::Freeze for aya::programs::kprobe::KProbeError
  7539. impl core::marker::Send for aya::programs::kprobe::KProbeError
  7540. impl core::marker::Sync for aya::programs::kprobe::KProbeError
  7541. impl core::marker::Unpin for aya::programs::kprobe::KProbeError
  7542. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError
  7543. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError
  7544. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeError where U: core::convert::From<T>
  7545. pub fn aya::programs::kprobe::KProbeError::into(self) -> U
  7546. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeError where U: core::convert::Into<T>
  7547. pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible
  7548. pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7549. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom<T>
  7550. pub type aya::programs::kprobe::KProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  7551. pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7552. impl<T> alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + ?core::marker::Sized
  7553. pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String
  7554. impl<T> core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + ?core::marker::Sized
  7555. pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId
  7556. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  7557. pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T
  7558. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  7559. pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T
  7560. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeError
  7561. pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T
  7562. pub enum aya::programs::PerfEventScope
  7563. pub aya::programs::PerfEventScope::AllProcessesOneCpu
  7564. pub aya::programs::PerfEventScope::AllProcessesOneCpu::cpu: u32
  7565. pub aya::programs::PerfEventScope::CallingProcessAnyCpu
  7566. pub aya::programs::PerfEventScope::CallingProcessOneCpu
  7567. pub aya::programs::PerfEventScope::CallingProcessOneCpu::cpu: u32
  7568. pub aya::programs::PerfEventScope::OneProcessAnyCpu
  7569. pub aya::programs::PerfEventScope::OneProcessAnyCpu::pid: u32
  7570. pub aya::programs::PerfEventScope::OneProcessOneCpu
  7571. pub aya::programs::PerfEventScope::OneProcessOneCpu::cpu: u32
  7572. pub aya::programs::PerfEventScope::OneProcessOneCpu::pid: u32
  7573. impl core::clone::Clone for aya::programs::perf_event::PerfEventScope
  7574. pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope
  7575. impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope
  7576. pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7577. impl core::marker::Freeze for aya::programs::perf_event::PerfEventScope
  7578. impl core::marker::Send for aya::programs::perf_event::PerfEventScope
  7579. impl core::marker::Sync for aya::programs::perf_event::PerfEventScope
  7580. impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope
  7581. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope
  7582. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope
  7583. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::From<T>
  7584. pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U
  7585. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::Into<T>
  7586. pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible
  7587. pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7588. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom<T>
  7589. pub type aya::programs::perf_event::PerfEventScope::Error = <U as core::convert::TryFrom<T>>::Error
  7590. pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7591. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  7592. pub type aya::programs::perf_event::PerfEventScope::Owned = T
  7593. pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T)
  7594. pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T
  7595. impl<T> core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + ?core::marker::Sized
  7596. pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId
  7597. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  7598. pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T
  7599. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  7600. pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T
  7601. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  7602. pub unsafe fn aya::programs::perf_event::PerfEventScope::clone_to_uninit(&self, dest: *mut u8)
  7603. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventScope
  7604. pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T
  7605. #[repr(u32)] pub enum aya::programs::PerfTypeId
  7606. pub aya::programs::PerfTypeId::Breakpoint = 5
  7607. pub aya::programs::PerfTypeId::Hardware = 0
  7608. pub aya::programs::PerfTypeId::HwCache = 3
  7609. pub aya::programs::PerfTypeId::Raw = 4
  7610. pub aya::programs::PerfTypeId::Software = 1
  7611. pub aya::programs::PerfTypeId::TracePoint = 2
  7612. impl core::clone::Clone for aya::programs::perf_event::PerfTypeId
  7613. pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId
  7614. impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId
  7615. pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7616. impl core::marker::Freeze for aya::programs::perf_event::PerfTypeId
  7617. impl core::marker::Send for aya::programs::perf_event::PerfTypeId
  7618. impl core::marker::Sync for aya::programs::perf_event::PerfTypeId
  7619. impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId
  7620. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId
  7621. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId
  7622. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::From<T>
  7623. pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U
  7624. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::Into<T>
  7625. pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible
  7626. pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7627. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom<T>
  7628. pub type aya::programs::perf_event::PerfTypeId::Error = <U as core::convert::TryFrom<T>>::Error
  7629. pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7630. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  7631. pub type aya::programs::perf_event::PerfTypeId::Owned = T
  7632. pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T)
  7633. pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T
  7634. impl<T> core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + ?core::marker::Sized
  7635. pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId
  7636. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  7637. pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T
  7638. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  7639. pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T
  7640. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  7641. pub unsafe fn aya::programs::perf_event::PerfTypeId::clone_to_uninit(&self, dest: *mut u8)
  7642. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfTypeId
  7643. pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T
  7644. pub enum aya::programs::ProbeKind
  7645. pub aya::programs::ProbeKind::KProbe
  7646. pub aya::programs::ProbeKind::KRetProbe
  7647. pub aya::programs::ProbeKind::UProbe
  7648. pub aya::programs::ProbeKind::URetProbe
  7649. impl core::clone::Clone for aya::programs::ProbeKind
  7650. pub fn aya::programs::ProbeKind::clone(&self) -> aya::programs::ProbeKind
  7651. impl core::fmt::Debug for aya::programs::ProbeKind
  7652. pub fn aya::programs::ProbeKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7653. impl core::marker::Copy for aya::programs::ProbeKind
  7654. impl core::marker::Freeze for aya::programs::ProbeKind
  7655. impl core::marker::Send for aya::programs::ProbeKind
  7656. impl core::marker::Sync for aya::programs::ProbeKind
  7657. impl core::marker::Unpin for aya::programs::ProbeKind
  7658. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProbeKind
  7659. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProbeKind
  7660. impl<T, U> core::convert::Into<U> for aya::programs::ProbeKind where U: core::convert::From<T>
  7661. pub fn aya::programs::ProbeKind::into(self) -> U
  7662. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProbeKind where U: core::convert::Into<T>
  7663. pub type aya::programs::ProbeKind::Error = core::convert::Infallible
  7664. pub fn aya::programs::ProbeKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7665. impl<T, U> core::convert::TryInto<U> for aya::programs::ProbeKind where U: core::convert::TryFrom<T>
  7666. pub type aya::programs::ProbeKind::Error = <U as core::convert::TryFrom<T>>::Error
  7667. pub fn aya::programs::ProbeKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7668. impl<T> alloc::borrow::ToOwned for aya::programs::ProbeKind where T: core::clone::Clone
  7669. pub type aya::programs::ProbeKind::Owned = T
  7670. pub fn aya::programs::ProbeKind::clone_into(&self, target: &mut T)
  7671. pub fn aya::programs::ProbeKind::to_owned(&self) -> T
  7672. impl<T> core::any::Any for aya::programs::ProbeKind where T: 'static + ?core::marker::Sized
  7673. pub fn aya::programs::ProbeKind::type_id(&self) -> core::any::TypeId
  7674. impl<T> core::borrow::Borrow<T> for aya::programs::ProbeKind where T: ?core::marker::Sized
  7675. pub fn aya::programs::ProbeKind::borrow(&self) -> &T
  7676. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProbeKind where T: ?core::marker::Sized
  7677. pub fn aya::programs::ProbeKind::borrow_mut(&mut self) -> &mut T
  7678. impl<T> core::clone::CloneToUninit for aya::programs::ProbeKind where T: core::clone::Clone
  7679. pub unsafe fn aya::programs::ProbeKind::clone_to_uninit(&self, dest: *mut u8)
  7680. impl<T> core::convert::From<T> for aya::programs::ProbeKind
  7681. pub fn aya::programs::ProbeKind::from(t: T) -> T
  7682. pub enum aya::programs::Program
  7683. pub aya::programs::Program::BtfTracePoint(aya::programs::tp_btf::BtfTracePoint)
  7684. pub aya::programs::Program::CgroupDevice(aya::programs::cgroup_device::CgroupDevice)
  7685. pub aya::programs::Program::CgroupSkb(aya::programs::cgroup_skb::CgroupSkb)
  7686. pub aya::programs::Program::CgroupSock(aya::programs::cgroup_sock::CgroupSock)
  7687. pub aya::programs::Program::CgroupSockAddr(aya::programs::cgroup_sock_addr::CgroupSockAddr)
  7688. pub aya::programs::Program::CgroupSockopt(aya::programs::cgroup_sockopt::CgroupSockopt)
  7689. pub aya::programs::Program::CgroupSysctl(aya::programs::cgroup_sysctl::CgroupSysctl)
  7690. pub aya::programs::Program::Extension(aya::programs::extension::Extension)
  7691. pub aya::programs::Program::FEntry(aya::programs::fentry::FEntry)
  7692. pub aya::programs::Program::FExit(aya::programs::fexit::FExit)
  7693. pub aya::programs::Program::FlowDissector(aya::programs::flow_dissector::FlowDissector)
  7694. pub aya::programs::Program::Iter(aya::programs::iter::Iter)
  7695. pub aya::programs::Program::KProbe(aya::programs::kprobe::KProbe)
  7696. pub aya::programs::Program::LircMode2(aya::programs::lirc_mode2::LircMode2)
  7697. pub aya::programs::Program::Lsm(aya::programs::lsm::Lsm)
  7698. pub aya::programs::Program::PerfEvent(aya::programs::perf_event::PerfEvent)
  7699. pub aya::programs::Program::RawTracePoint(aya::programs::raw_trace_point::RawTracePoint)
  7700. pub aya::programs::Program::SchedClassifier(aya::programs::tc::SchedClassifier)
  7701. pub aya::programs::Program::SkLookup(aya::programs::sk_lookup::SkLookup)
  7702. pub aya::programs::Program::SkMsg(aya::programs::sk_msg::SkMsg)
  7703. pub aya::programs::Program::SkSkb(aya::programs::sk_skb::SkSkb)
  7704. pub aya::programs::Program::SockOps(aya::programs::sock_ops::SockOps)
  7705. pub aya::programs::Program::SocketFilter(aya::programs::socket_filter::SocketFilter)
  7706. pub aya::programs::Program::TracePoint(aya::programs::trace_point::TracePoint)
  7707. pub aya::programs::Program::UProbe(aya::programs::uprobe::UProbe)
  7708. pub aya::programs::Program::Xdp(aya::programs::xdp::Xdp)
  7709. impl aya::programs::Program
  7710. pub fn aya::programs::Program::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7711. pub fn aya::programs::Program::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7712. pub fn aya::programs::Program::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7713. pub fn aya::programs::Program::prog_type(&self) -> aya::programs::ProgramType
  7714. pub fn aya::programs::Program::unload(self) -> core::result::Result<(), aya::programs::ProgramError>
  7715. impl core::fmt::Debug for aya::programs::Program
  7716. pub fn aya::programs::Program::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7717. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  7718. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  7719. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  7720. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  7721. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  7722. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  7723. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  7724. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  7725. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  7726. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  7727. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  7728. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  7729. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  7730. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  7731. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  7732. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  7733. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  7734. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  7735. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  7736. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  7737. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  7738. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  7739. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  7740. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  7741. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  7742. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  7743. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  7744. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::flow_dissector::FlowDissector
  7745. pub type &'a aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  7746. pub fn &'a aya::programs::flow_dissector::FlowDissector::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  7747. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::iter::Iter
  7748. pub type &'a aya::programs::iter::Iter::Error = aya::programs::ProgramError
  7749. pub fn &'a aya::programs::iter::Iter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::iter::Iter, aya::programs::ProgramError>
  7750. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  7751. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  7752. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  7753. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  7754. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  7755. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  7756. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  7757. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  7758. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  7759. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  7760. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  7761. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  7762. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::raw_trace_point::RawTracePoint
  7763. pub type &'a aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  7764. pub fn &'a aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  7765. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_lookup::SkLookup
  7766. pub type &'a aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  7767. pub fn &'a aya::programs::sk_lookup::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  7768. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_msg::SkMsg
  7769. pub type &'a aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  7770. pub fn &'a aya::programs::sk_msg::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  7771. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_skb::SkSkb
  7772. pub type &'a aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  7773. pub fn &'a aya::programs::sk_skb::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  7774. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sock_ops::SockOps
  7775. pub type &'a aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  7776. pub fn &'a aya::programs::sock_ops::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  7777. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::socket_filter::SocketFilter
  7778. pub type &'a aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  7779. pub fn &'a aya::programs::socket_filter::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  7780. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  7781. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  7782. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  7783. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  7784. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  7785. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  7786. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  7787. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  7788. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  7789. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  7790. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7791. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7792. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  7793. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7794. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7795. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  7796. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  7797. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  7798. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  7799. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  7800. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  7801. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  7802. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  7803. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  7804. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  7805. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  7806. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  7807. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  7808. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  7809. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  7810. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  7811. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  7812. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  7813. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  7814. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  7815. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  7816. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  7817. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  7818. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  7819. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  7820. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  7821. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  7822. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::flow_dissector::FlowDissector
  7823. pub type &'a mut aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  7824. pub fn &'a mut aya::programs::flow_dissector::FlowDissector::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  7825. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::iter::Iter
  7826. pub type &'a mut aya::programs::iter::Iter::Error = aya::programs::ProgramError
  7827. pub fn &'a mut aya::programs::iter::Iter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::iter::Iter, aya::programs::ProgramError>
  7828. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  7829. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  7830. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  7831. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  7832. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  7833. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  7834. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  7835. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  7836. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  7837. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  7838. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  7839. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  7840. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::raw_trace_point::RawTracePoint
  7841. pub type &'a mut aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  7842. pub fn &'a mut aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  7843. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_lookup::SkLookup
  7844. pub type &'a mut aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  7845. pub fn &'a mut aya::programs::sk_lookup::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  7846. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_msg::SkMsg
  7847. pub type &'a mut aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  7848. pub fn &'a mut aya::programs::sk_msg::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  7849. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_skb::SkSkb
  7850. pub type &'a mut aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  7851. pub fn &'a mut aya::programs::sk_skb::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  7852. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sock_ops::SockOps
  7853. pub type &'a mut aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  7854. pub fn &'a mut aya::programs::sock_ops::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  7855. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::socket_filter::SocketFilter
  7856. pub type &'a mut aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  7857. pub fn &'a mut aya::programs::socket_filter::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  7858. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  7859. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  7860. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  7861. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  7862. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  7863. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  7864. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  7865. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  7866. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  7867. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  7868. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7869. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7870. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  7871. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7872. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7873. impl core::marker::Freeze for aya::programs::Program
  7874. impl core::marker::Send for aya::programs::Program
  7875. impl core::marker::Sync for aya::programs::Program
  7876. impl core::marker::Unpin for aya::programs::Program
  7877. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::Program
  7878. impl core::panic::unwind_safe::UnwindSafe for aya::programs::Program
  7879. impl<T, U> core::convert::Into<U> for aya::programs::Program where U: core::convert::From<T>
  7880. pub fn aya::programs::Program::into(self) -> U
  7881. impl<T, U> core::convert::TryFrom<U> for aya::programs::Program where U: core::convert::Into<T>
  7882. pub type aya::programs::Program::Error = core::convert::Infallible
  7883. pub fn aya::programs::Program::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7884. impl<T, U> core::convert::TryInto<U> for aya::programs::Program where U: core::convert::TryFrom<T>
  7885. pub type aya::programs::Program::Error = <U as core::convert::TryFrom<T>>::Error
  7886. pub fn aya::programs::Program::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7887. impl<T> core::any::Any for aya::programs::Program where T: 'static + ?core::marker::Sized
  7888. pub fn aya::programs::Program::type_id(&self) -> core::any::TypeId
  7889. impl<T> core::borrow::Borrow<T> for aya::programs::Program where T: ?core::marker::Sized
  7890. pub fn aya::programs::Program::borrow(&self) -> &T
  7891. impl<T> core::borrow::BorrowMut<T> for aya::programs::Program where T: ?core::marker::Sized
  7892. pub fn aya::programs::Program::borrow_mut(&mut self) -> &mut T
  7893. impl<T> core::convert::From<T> for aya::programs::Program
  7894. pub fn aya::programs::Program::from(t: T) -> T
  7895. pub enum aya::programs::ProgramError
  7896. pub aya::programs::ProgramError::AlreadyAttached
  7897. pub aya::programs::ProgramError::AlreadyLoaded
  7898. pub aya::programs::ProgramError::AttachCookieNotSupported
  7899. pub aya::programs::ProgramError::Btf(aya_obj::btf::btf::BtfError)
  7900. pub aya::programs::ProgramError::ExtensionError(aya::programs::extension::ExtensionError)
  7901. pub aya::programs::ProgramError::IOError(std::io::error::Error)
  7902. pub aya::programs::ProgramError::InvalidName
  7903. pub aya::programs::ProgramError::InvalidName::name: alloc::string::String
  7904. pub aya::programs::ProgramError::KProbeError(aya::programs::kprobe::KProbeError)
  7905. pub aya::programs::ProgramError::LoadError
  7906. pub aya::programs::ProgramError::LoadError::io_error: std::io::error::Error
  7907. pub aya::programs::ProgramError::LoadError::verifier_log: aya_obj::VerifierLog
  7908. pub aya::programs::ProgramError::MapError(aya::maps::MapError)
  7909. pub aya::programs::ProgramError::NetlinkError(aya::sys::netlink::NetlinkError)
  7910. pub aya::programs::ProgramError::NotAttached
  7911. pub aya::programs::ProgramError::NotLoaded
  7912. pub aya::programs::ProgramError::SocketFilterError(aya::programs::socket_filter::SocketFilterError)
  7913. pub aya::programs::ProgramError::SyscallError(aya::sys::SyscallError)
  7914. pub aya::programs::ProgramError::TcError(aya::programs::tc::TcError)
  7915. pub aya::programs::ProgramError::TracePointError(aya::programs::trace_point::TracePointError)
  7916. pub aya::programs::ProgramError::UProbeError(aya::programs::uprobe::UProbeError)
  7917. pub aya::programs::ProgramError::UnexpectedProgramType
  7918. pub aya::programs::ProgramError::UnknownInterface
  7919. pub aya::programs::ProgramError::UnknownInterface::name: alloc::string::String
  7920. pub aya::programs::ProgramError::XdpError(aya::programs::xdp::XdpError)
  7921. impl core::convert::From<aya::maps::MapError> for aya::programs::ProgramError
  7922. pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self
  7923. impl core::convert::From<aya::programs::ProgramError> for aya::EbpfError
  7924. pub fn aya::EbpfError::from(source: aya::programs::ProgramError) -> Self
  7925. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  7926. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  7927. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  7928. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  7929. impl core::convert::From<aya::programs::socket_filter::SocketFilterError> for aya::programs::ProgramError
  7930. pub fn aya::programs::ProgramError::from(source: aya::programs::socket_filter::SocketFilterError) -> Self
  7931. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  7932. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  7933. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  7934. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  7935. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  7936. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  7937. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  7938. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  7939. impl core::convert::From<aya::sys::SyscallError> for aya::programs::ProgramError
  7940. pub fn aya::programs::ProgramError::from(source: aya::sys::SyscallError) -> Self
  7941. impl core::convert::From<aya_obj::btf::btf::BtfError> for aya::programs::ProgramError
  7942. pub fn aya::programs::ProgramError::from(source: aya_obj::btf::btf::BtfError) -> Self
  7943. impl core::convert::From<std::io::error::Error> for aya::programs::ProgramError
  7944. pub fn aya::programs::ProgramError::from(source: std::io::error::Error) -> Self
  7945. impl core::error::Error for aya::programs::ProgramError
  7946. pub fn aya::programs::ProgramError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7947. impl core::fmt::Debug for aya::programs::ProgramError
  7948. pub fn aya::programs::ProgramError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7949. impl core::fmt::Display for aya::programs::ProgramError
  7950. pub fn aya::programs::ProgramError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7951. impl core::marker::Freeze for aya::programs::ProgramError
  7952. impl core::marker::Send for aya::programs::ProgramError
  7953. impl core::marker::Sync for aya::programs::ProgramError
  7954. impl core::marker::Unpin for aya::programs::ProgramError
  7955. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramError
  7956. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramError
  7957. impl<T, U> core::convert::Into<U> for aya::programs::ProgramError where U: core::convert::From<T>
  7958. pub fn aya::programs::ProgramError::into(self) -> U
  7959. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramError where U: core::convert::Into<T>
  7960. pub type aya::programs::ProgramError::Error = core::convert::Infallible
  7961. pub fn aya::programs::ProgramError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7962. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramError where U: core::convert::TryFrom<T>
  7963. pub type aya::programs::ProgramError::Error = <U as core::convert::TryFrom<T>>::Error
  7964. pub fn aya::programs::ProgramError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7965. impl<T> alloc::string::ToString for aya::programs::ProgramError where T: core::fmt::Display + ?core::marker::Sized
  7966. pub fn aya::programs::ProgramError::to_string(&self) -> alloc::string::String
  7967. impl<T> core::any::Any for aya::programs::ProgramError where T: 'static + ?core::marker::Sized
  7968. pub fn aya::programs::ProgramError::type_id(&self) -> core::any::TypeId
  7969. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramError where T: ?core::marker::Sized
  7970. pub fn aya::programs::ProgramError::borrow(&self) -> &T
  7971. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramError where T: ?core::marker::Sized
  7972. pub fn aya::programs::ProgramError::borrow_mut(&mut self) -> &mut T
  7973. impl<T> core::convert::From<T> for aya::programs::ProgramError
  7974. pub fn aya::programs::ProgramError::from(t: T) -> T
  7975. #[non_exhaustive] pub enum aya::programs::ProgramType
  7976. pub aya::programs::ProgramType::CgroupDevice = 15
  7977. pub aya::programs::ProgramType::CgroupSkb = 8
  7978. pub aya::programs::ProgramType::CgroupSock = 9
  7979. pub aya::programs::ProgramType::CgroupSockAddr = 18
  7980. pub aya::programs::ProgramType::CgroupSockopt = 25
  7981. pub aya::programs::ProgramType::CgroupSysctl = 23
  7982. pub aya::programs::ProgramType::Extension = 28
  7983. pub aya::programs::ProgramType::FlowDissector = 22
  7984. pub aya::programs::ProgramType::KProbe = 2
  7985. pub aya::programs::ProgramType::LircMode2 = 20
  7986. pub aya::programs::ProgramType::Lsm = 29
  7987. pub aya::programs::ProgramType::LwtInput = 10
  7988. pub aya::programs::ProgramType::LwtOutput = 11
  7989. pub aya::programs::ProgramType::LwtSeg6local = 19
  7990. pub aya::programs::ProgramType::LwtXmit = 12
  7991. pub aya::programs::ProgramType::Netfilter = 32
  7992. pub aya::programs::ProgramType::PerfEvent = 7
  7993. pub aya::programs::ProgramType::RawTracePoint = 17
  7994. pub aya::programs::ProgramType::RawTracePointWritable = 24
  7995. pub aya::programs::ProgramType::SchedAction = 4
  7996. pub aya::programs::ProgramType::SchedClassifier = 3
  7997. pub aya::programs::ProgramType::SkLookup = 30
  7998. pub aya::programs::ProgramType::SkMsg = 16
  7999. pub aya::programs::ProgramType::SkReuseport = 21
  8000. pub aya::programs::ProgramType::SkSkb = 14
  8001. pub aya::programs::ProgramType::SockOps = 13
  8002. pub aya::programs::ProgramType::SocketFilter = 1
  8003. pub aya::programs::ProgramType::StructOps = 27
  8004. pub aya::programs::ProgramType::Syscall = 31
  8005. pub aya::programs::ProgramType::TracePoint = 5
  8006. pub aya::programs::ProgramType::Tracing = 26
  8007. pub aya::programs::ProgramType::Unspecified = 0
  8008. pub aya::programs::ProgramType::Xdp = 6
  8009. impl core::clone::Clone for aya::programs::ProgramType
  8010. pub fn aya::programs::ProgramType::clone(&self) -> aya::programs::ProgramType
  8011. impl core::cmp::PartialEq for aya::programs::ProgramType
  8012. pub fn aya::programs::ProgramType::eq(&self, other: &aya::programs::ProgramType) -> bool
  8013. impl core::convert::TryFrom<aya_obj::generated::linux_bindings_x86_64::bpf_prog_type> for aya::programs::ProgramType
  8014. pub type aya::programs::ProgramType::Error = aya::programs::ProgramError
  8015. pub fn aya::programs::ProgramType::try_from(prog_type: aya_obj::generated::linux_bindings_x86_64::bpf_prog_type) -> core::result::Result<Self, Self::Error>
  8016. impl core::fmt::Debug for aya::programs::ProgramType
  8017. pub fn aya::programs::ProgramType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8018. impl core::marker::Copy for aya::programs::ProgramType
  8019. impl core::marker::StructuralPartialEq for aya::programs::ProgramType
  8020. impl core::marker::Freeze for aya::programs::ProgramType
  8021. impl core::marker::Send for aya::programs::ProgramType
  8022. impl core::marker::Sync for aya::programs::ProgramType
  8023. impl core::marker::Unpin for aya::programs::ProgramType
  8024. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramType
  8025. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramType
  8026. impl<T, U> core::convert::Into<U> for aya::programs::ProgramType where U: core::convert::From<T>
  8027. pub fn aya::programs::ProgramType::into(self) -> U
  8028. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramType where U: core::convert::Into<T>
  8029. pub type aya::programs::ProgramType::Error = core::convert::Infallible
  8030. pub fn aya::programs::ProgramType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8031. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramType where U: core::convert::TryFrom<T>
  8032. pub type aya::programs::ProgramType::Error = <U as core::convert::TryFrom<T>>::Error
  8033. pub fn aya::programs::ProgramType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8034. impl<T> alloc::borrow::ToOwned for aya::programs::ProgramType where T: core::clone::Clone
  8035. pub type aya::programs::ProgramType::Owned = T
  8036. pub fn aya::programs::ProgramType::clone_into(&self, target: &mut T)
  8037. pub fn aya::programs::ProgramType::to_owned(&self) -> T
  8038. impl<T> core::any::Any for aya::programs::ProgramType where T: 'static + ?core::marker::Sized
  8039. pub fn aya::programs::ProgramType::type_id(&self) -> core::any::TypeId
  8040. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramType where T: ?core::marker::Sized
  8041. pub fn aya::programs::ProgramType::borrow(&self) -> &T
  8042. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramType where T: ?core::marker::Sized
  8043. pub fn aya::programs::ProgramType::borrow_mut(&mut self) -> &mut T
  8044. impl<T> core::clone::CloneToUninit for aya::programs::ProgramType where T: core::clone::Clone
  8045. pub unsafe fn aya::programs::ProgramType::clone_to_uninit(&self, dest: *mut u8)
  8046. impl<T> core::convert::From<T> for aya::programs::ProgramType
  8047. pub fn aya::programs::ProgramType::from(t: T) -> T
  8048. pub enum aya::programs::SamplePolicy
  8049. pub aya::programs::SamplePolicy::Frequency(u64)
  8050. pub aya::programs::SamplePolicy::Period(u64)
  8051. impl core::clone::Clone for aya::programs::perf_event::SamplePolicy
  8052. pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy
  8053. impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy
  8054. pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8055. impl core::marker::Freeze for aya::programs::perf_event::SamplePolicy
  8056. impl core::marker::Send for aya::programs::perf_event::SamplePolicy
  8057. impl core::marker::Sync for aya::programs::perf_event::SamplePolicy
  8058. impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy
  8059. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy
  8060. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy
  8061. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::From<T>
  8062. pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U
  8063. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::Into<T>
  8064. pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible
  8065. pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8066. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom<T>
  8067. pub type aya::programs::perf_event::SamplePolicy::Error = <U as core::convert::TryFrom<T>>::Error
  8068. pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8069. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  8070. pub type aya::programs::perf_event::SamplePolicy::Owned = T
  8071. pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T)
  8072. pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T
  8073. impl<T> core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + ?core::marker::Sized
  8074. pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId
  8075. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  8076. pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T
  8077. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  8078. pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T
  8079. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  8080. pub unsafe fn aya::programs::perf_event::SamplePolicy::clone_to_uninit(&self, dest: *mut u8)
  8081. impl<T> core::convert::From<T> for aya::programs::perf_event::SamplePolicy
  8082. pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T
  8083. pub enum aya::programs::SkSkbKind
  8084. pub aya::programs::SkSkbKind::StreamParser
  8085. pub aya::programs::SkSkbKind::StreamVerdict
  8086. impl core::clone::Clone for aya::programs::sk_skb::SkSkbKind
  8087. pub fn aya::programs::sk_skb::SkSkbKind::clone(&self) -> aya::programs::sk_skb::SkSkbKind
  8088. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbKind
  8089. pub fn aya::programs::sk_skb::SkSkbKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8090. impl core::marker::Copy for aya::programs::sk_skb::SkSkbKind
  8091. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbKind
  8092. impl core::marker::Send for aya::programs::sk_skb::SkSkbKind
  8093. impl core::marker::Sync for aya::programs::sk_skb::SkSkbKind
  8094. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbKind
  8095. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbKind
  8096. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbKind
  8097. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::From<T>
  8098. pub fn aya::programs::sk_skb::SkSkbKind::into(self) -> U
  8099. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::Into<T>
  8100. pub type aya::programs::sk_skb::SkSkbKind::Error = core::convert::Infallible
  8101. pub fn aya::programs::sk_skb::SkSkbKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8102. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::TryFrom<T>
  8103. pub type aya::programs::sk_skb::SkSkbKind::Error = <U as core::convert::TryFrom<T>>::Error
  8104. pub fn aya::programs::sk_skb::SkSkbKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8105. impl<T> alloc::borrow::ToOwned for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  8106. pub type aya::programs::sk_skb::SkSkbKind::Owned = T
  8107. pub fn aya::programs::sk_skb::SkSkbKind::clone_into(&self, target: &mut T)
  8108. pub fn aya::programs::sk_skb::SkSkbKind::to_owned(&self) -> T
  8109. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbKind where T: 'static + ?core::marker::Sized
  8110. pub fn aya::programs::sk_skb::SkSkbKind::type_id(&self) -> core::any::TypeId
  8111. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  8112. pub fn aya::programs::sk_skb::SkSkbKind::borrow(&self) -> &T
  8113. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  8114. pub fn aya::programs::sk_skb::SkSkbKind::borrow_mut(&mut self) -> &mut T
  8115. impl<T> core::clone::CloneToUninit for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  8116. pub unsafe fn aya::programs::sk_skb::SkSkbKind::clone_to_uninit(&self, dest: *mut u8)
  8117. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbKind
  8118. pub fn aya::programs::sk_skb::SkSkbKind::from(t: T) -> T
  8119. pub enum aya::programs::SocketFilterError
  8120. pub aya::programs::SocketFilterError::SoAttachEbpfError
  8121. pub aya::programs::SocketFilterError::SoAttachEbpfError::io_error: std::io::error::Error
  8122. impl core::convert::From<aya::programs::socket_filter::SocketFilterError> for aya::programs::ProgramError
  8123. pub fn aya::programs::ProgramError::from(source: aya::programs::socket_filter::SocketFilterError) -> Self
  8124. impl core::error::Error for aya::programs::socket_filter::SocketFilterError
  8125. pub fn aya::programs::socket_filter::SocketFilterError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8126. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterError
  8127. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8128. impl core::fmt::Display for aya::programs::socket_filter::SocketFilterError
  8129. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8130. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterError
  8131. impl core::marker::Send for aya::programs::socket_filter::SocketFilterError
  8132. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterError
  8133. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterError
  8134. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterError
  8135. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterError
  8136. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::From<T>
  8137. pub fn aya::programs::socket_filter::SocketFilterError::into(self) -> U
  8138. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::Into<T>
  8139. pub type aya::programs::socket_filter::SocketFilterError::Error = core::convert::Infallible
  8140. pub fn aya::programs::socket_filter::SocketFilterError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8141. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::TryFrom<T>
  8142. pub type aya::programs::socket_filter::SocketFilterError::Error = <U as core::convert::TryFrom<T>>::Error
  8143. pub fn aya::programs::socket_filter::SocketFilterError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8144. impl<T> alloc::string::ToString for aya::programs::socket_filter::SocketFilterError where T: core::fmt::Display + ?core::marker::Sized
  8145. pub fn aya::programs::socket_filter::SocketFilterError::to_string(&self) -> alloc::string::String
  8146. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterError where T: 'static + ?core::marker::Sized
  8147. pub fn aya::programs::socket_filter::SocketFilterError::type_id(&self) -> core::any::TypeId
  8148. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  8149. pub fn aya::programs::socket_filter::SocketFilterError::borrow(&self) -> &T
  8150. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  8151. pub fn aya::programs::socket_filter::SocketFilterError::borrow_mut(&mut self) -> &mut T
  8152. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterError
  8153. pub fn aya::programs::socket_filter::SocketFilterError::from(t: T) -> T
  8154. pub enum aya::programs::TcAttachType
  8155. pub aya::programs::TcAttachType::Custom(u32)
  8156. pub aya::programs::TcAttachType::Egress
  8157. pub aya::programs::TcAttachType::Ingress
  8158. impl core::clone::Clone for aya::programs::tc::TcAttachType
  8159. pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType
  8160. impl core::cmp::Eq for aya::programs::tc::TcAttachType
  8161. impl core::cmp::PartialEq for aya::programs::tc::TcAttachType
  8162. pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool
  8163. impl core::fmt::Debug for aya::programs::tc::TcAttachType
  8164. pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8165. impl core::hash::Hash for aya::programs::tc::TcAttachType
  8166. pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  8167. impl core::marker::Copy for aya::programs::tc::TcAttachType
  8168. impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType
  8169. impl core::marker::Freeze for aya::programs::tc::TcAttachType
  8170. impl core::marker::Send for aya::programs::tc::TcAttachType
  8171. impl core::marker::Sync for aya::programs::tc::TcAttachType
  8172. impl core::marker::Unpin for aya::programs::tc::TcAttachType
  8173. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType
  8174. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType
  8175. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::TcAttachType where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  8176. pub fn aya::programs::tc::TcAttachType::equivalent(&self, key: &K) -> bool
  8177. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachType where U: core::convert::From<T>
  8178. pub fn aya::programs::tc::TcAttachType::into(self) -> U
  8179. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachType where U: core::convert::Into<T>
  8180. pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible
  8181. pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8182. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachType where U: core::convert::TryFrom<T>
  8183. pub type aya::programs::tc::TcAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  8184. pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8185. impl<T> alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone
  8186. pub type aya::programs::tc::TcAttachType::Owned = T
  8187. pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T)
  8188. pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T
  8189. impl<T> core::any::Any for aya::programs::tc::TcAttachType where T: 'static + ?core::marker::Sized
  8190. pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId
  8191. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  8192. pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T
  8193. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  8194. pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T
  8195. impl<T> core::clone::CloneToUninit for aya::programs::tc::TcAttachType where T: core::clone::Clone
  8196. pub unsafe fn aya::programs::tc::TcAttachType::clone_to_uninit(&self, dest: *mut u8)
  8197. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachType
  8198. pub fn aya::programs::tc::TcAttachType::from(t: T) -> T
  8199. pub enum aya::programs::TcError
  8200. pub aya::programs::TcError::AlreadyAttached
  8201. pub aya::programs::TcError::InvalidLinkOperation
  8202. pub aya::programs::TcError::InvalidTcxAttach(u32)
  8203. pub aya::programs::TcError::IoError(std::io::error::Error)
  8204. pub aya::programs::TcError::NetlinkError(aya::sys::netlink::NetlinkError)
  8205. pub aya::programs::TcError::NulError(alloc::ffi::c_str::NulError)
  8206. impl core::convert::From<alloc::ffi::c_str::NulError> for aya::programs::tc::TcError
  8207. pub fn aya::programs::tc::TcError::from(source: alloc::ffi::c_str::NulError) -> Self
  8208. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  8209. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  8210. impl core::convert::From<std::io::error::Error> for aya::programs::tc::TcError
  8211. pub fn aya::programs::tc::TcError::from(source: std::io::error::Error) -> Self
  8212. impl core::error::Error for aya::programs::tc::TcError
  8213. pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8214. impl core::fmt::Debug for aya::programs::tc::TcError
  8215. pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8216. impl core::fmt::Display for aya::programs::tc::TcError
  8217. pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8218. impl core::marker::Freeze for aya::programs::tc::TcError
  8219. impl core::marker::Send for aya::programs::tc::TcError
  8220. impl core::marker::Sync for aya::programs::tc::TcError
  8221. impl core::marker::Unpin for aya::programs::tc::TcError
  8222. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError
  8223. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError
  8224. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcError where U: core::convert::From<T>
  8225. pub fn aya::programs::tc::TcError::into(self) -> U
  8226. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcError where U: core::convert::Into<T>
  8227. pub type aya::programs::tc::TcError::Error = core::convert::Infallible
  8228. pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8229. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcError where U: core::convert::TryFrom<T>
  8230. pub type aya::programs::tc::TcError::Error = <U as core::convert::TryFrom<T>>::Error
  8231. pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8232. impl<T> alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + ?core::marker::Sized
  8233. pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String
  8234. impl<T> core::any::Any for aya::programs::tc::TcError where T: 'static + ?core::marker::Sized
  8235. pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId
  8236. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  8237. pub fn aya::programs::tc::TcError::borrow(&self) -> &T
  8238. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  8239. pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T
  8240. impl<T> core::convert::From<T> for aya::programs::tc::TcError
  8241. pub fn aya::programs::tc::TcError::from(t: T) -> T
  8242. pub enum aya::programs::TracePointError
  8243. pub aya::programs::TracePointError::FileError
  8244. pub aya::programs::TracePointError::FileError::filename: std::path::PathBuf
  8245. pub aya::programs::TracePointError::FileError::io_error: std::io::error::Error
  8246. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  8247. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  8248. impl core::error::Error for aya::programs::trace_point::TracePointError
  8249. pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8250. impl core::fmt::Debug for aya::programs::trace_point::TracePointError
  8251. pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8252. impl core::fmt::Display for aya::programs::trace_point::TracePointError
  8253. pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8254. impl core::marker::Freeze for aya::programs::trace_point::TracePointError
  8255. impl core::marker::Send for aya::programs::trace_point::TracePointError
  8256. impl core::marker::Sync for aya::programs::trace_point::TracePointError
  8257. impl core::marker::Unpin for aya::programs::trace_point::TracePointError
  8258. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError
  8259. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError
  8260. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointError where U: core::convert::From<T>
  8261. pub fn aya::programs::trace_point::TracePointError::into(self) -> U
  8262. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointError where U: core::convert::Into<T>
  8263. pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible
  8264. pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8265. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom<T>
  8266. pub type aya::programs::trace_point::TracePointError::Error = <U as core::convert::TryFrom<T>>::Error
  8267. pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8268. impl<T> alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + ?core::marker::Sized
  8269. pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String
  8270. impl<T> core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + ?core::marker::Sized
  8271. pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId
  8272. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  8273. pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T
  8274. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  8275. pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T
  8276. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointError
  8277. pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T
  8278. pub enum aya::programs::UProbeError
  8279. pub aya::programs::UProbeError::FileError
  8280. pub aya::programs::UProbeError::FileError::filename: std::path::PathBuf
  8281. pub aya::programs::UProbeError::FileError::io_error: std::io::error::Error
  8282. pub aya::programs::UProbeError::InvalidLdSoCache
  8283. pub aya::programs::UProbeError::InvalidLdSoCache::io_error: &'static std::io::error::Error
  8284. pub aya::programs::UProbeError::InvalidTarget
  8285. pub aya::programs::UProbeError::InvalidTarget::path: std::path::PathBuf
  8286. pub aya::programs::UProbeError::ProcMap
  8287. pub aya::programs::UProbeError::ProcMap::pid: i32
  8288. pub aya::programs::UProbeError::ProcMap::source: aya::programs::uprobe::ProcMapError
  8289. pub aya::programs::UProbeError::SymbolError
  8290. pub aya::programs::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>
  8291. pub aya::programs::UProbeError::SymbolError::symbol: alloc::string::String
  8292. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  8293. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  8294. impl core::error::Error for aya::programs::uprobe::UProbeError
  8295. pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8296. impl core::fmt::Debug for aya::programs::uprobe::UProbeError
  8297. pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8298. impl core::fmt::Display for aya::programs::uprobe::UProbeError
  8299. pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8300. impl core::marker::Freeze for aya::programs::uprobe::UProbeError
  8301. impl core::marker::Send for aya::programs::uprobe::UProbeError
  8302. impl core::marker::Sync for aya::programs::uprobe::UProbeError
  8303. impl core::marker::Unpin for aya::programs::uprobe::UProbeError
  8304. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError
  8305. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError
  8306. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeError where U: core::convert::From<T>
  8307. pub fn aya::programs::uprobe::UProbeError::into(self) -> U
  8308. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeError where U: core::convert::Into<T>
  8309. pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible
  8310. pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8311. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom<T>
  8312. pub type aya::programs::uprobe::UProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  8313. pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8314. impl<T> alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + ?core::marker::Sized
  8315. pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String
  8316. impl<T> core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + ?core::marker::Sized
  8317. pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId
  8318. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  8319. pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T
  8320. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  8321. pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T
  8322. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeError
  8323. pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T
  8324. pub enum aya::programs::XdpError
  8325. pub aya::programs::XdpError::NetlinkError(aya::sys::netlink::NetlinkError)
  8326. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  8327. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  8328. impl core::error::Error for aya::programs::xdp::XdpError
  8329. pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8330. impl core::fmt::Debug for aya::programs::xdp::XdpError
  8331. pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8332. impl core::fmt::Display for aya::programs::xdp::XdpError
  8333. pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8334. impl core::marker::Freeze for aya::programs::xdp::XdpError
  8335. impl core::marker::Send for aya::programs::xdp::XdpError
  8336. impl core::marker::Sync for aya::programs::xdp::XdpError
  8337. impl core::marker::Unpin for aya::programs::xdp::XdpError
  8338. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError
  8339. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError
  8340. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpError where U: core::convert::From<T>
  8341. pub fn aya::programs::xdp::XdpError::into(self) -> U
  8342. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpError where U: core::convert::Into<T>
  8343. pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible
  8344. pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8345. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpError where U: core::convert::TryFrom<T>
  8346. pub type aya::programs::xdp::XdpError::Error = <U as core::convert::TryFrom<T>>::Error
  8347. pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8348. impl<T> alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + ?core::marker::Sized
  8349. pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String
  8350. impl<T> core::any::Any for aya::programs::xdp::XdpError where T: 'static + ?core::marker::Sized
  8351. pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId
  8352. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  8353. pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T
  8354. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  8355. pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T
  8356. impl<T> core::convert::From<T> for aya::programs::xdp::XdpError
  8357. pub fn aya::programs::xdp::XdpError::from(t: T) -> T
  8358. pub struct aya::programs::BtfTracePoint
  8359. impl aya::programs::tp_btf::BtfTracePoint
  8360. pub const aya::programs::tp_btf::BtfTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  8361. pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLinkId, aya::programs::ProgramError>
  8362. pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8363. impl aya::programs::tp_btf::BtfTracePoint
  8364. pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8365. pub fn aya::programs::tp_btf::BtfTracePoint::take_link(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLink, aya::programs::ProgramError>
  8366. impl aya::programs::tp_btf::BtfTracePoint
  8367. pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8368. impl aya::programs::tp_btf::BtfTracePoint
  8369. pub fn aya::programs::tp_btf::BtfTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8370. impl aya::programs::tp_btf::BtfTracePoint
  8371. pub unsafe fn aya::programs::tp_btf::BtfTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8372. impl aya::programs::tp_btf::BtfTracePoint
  8373. pub fn aya::programs::tp_btf::BtfTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8374. impl aya::programs::tp_btf::BtfTracePoint
  8375. pub fn aya::programs::tp_btf::BtfTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8376. pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8377. impl aya::programs::tp_btf::BtfTracePoint
  8378. pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8379. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint
  8380. pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8381. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint
  8382. pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self)
  8383. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  8384. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  8385. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  8386. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  8387. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  8388. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  8389. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePoint
  8390. impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint
  8391. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint
  8392. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint
  8393. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint
  8394. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint
  8395. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From<T>
  8396. pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U
  8397. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into<T>
  8398. pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible
  8399. pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8400. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom<T>
  8401. pub type aya::programs::tp_btf::BtfTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  8402. pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8403. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + ?core::marker::Sized
  8404. pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId
  8405. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  8406. pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T
  8407. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  8408. pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T
  8409. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePoint
  8410. pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T
  8411. pub struct aya::programs::CgroupDevice
  8412. impl aya::programs::cgroup_device::CgroupDevice
  8413. pub const aya::programs::cgroup_device::CgroupDevice::PROGRAM_TYPE: aya::programs::ProgramType
  8414. pub fn aya::programs::cgroup_device::CgroupDevice::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLinkId, aya::programs::ProgramError>
  8415. pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8416. pub fn aya::programs::cgroup_device::CgroupDevice::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::cgroup_device::CgroupDeviceLink>, aya::programs::ProgramError>
  8417. impl aya::programs::cgroup_device::CgroupDevice
  8418. pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8419. pub fn aya::programs::cgroup_device::CgroupDevice::take_link(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLink, aya::programs::ProgramError>
  8420. impl aya::programs::cgroup_device::CgroupDevice
  8421. pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8422. impl aya::programs::cgroup_device::CgroupDevice
  8423. pub fn aya::programs::cgroup_device::CgroupDevice::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8424. impl aya::programs::cgroup_device::CgroupDevice
  8425. pub fn aya::programs::cgroup_device::CgroupDevice::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8426. impl aya::programs::cgroup_device::CgroupDevice
  8427. pub fn aya::programs::cgroup_device::CgroupDevice::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8428. impl aya::programs::cgroup_device::CgroupDevice
  8429. pub fn aya::programs::cgroup_device::CgroupDevice::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8430. pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8431. impl aya::programs::cgroup_device::CgroupDevice
  8432. pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8433. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice
  8434. pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8435. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice
  8436. pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self)
  8437. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  8438. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  8439. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  8440. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  8441. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  8442. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  8443. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDevice
  8444. impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice
  8445. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice
  8446. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice
  8447. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice
  8448. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice
  8449. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From<T>
  8450. pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U
  8451. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into<T>
  8452. pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible
  8453. pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8454. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom<T>
  8455. pub type aya::programs::cgroup_device::CgroupDevice::Error = <U as core::convert::TryFrom<T>>::Error
  8456. pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8457. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + ?core::marker::Sized
  8458. pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId
  8459. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  8460. pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T
  8461. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  8462. pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T
  8463. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDevice
  8464. pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T
  8465. pub struct aya::programs::CgroupSkb
  8466. impl aya::programs::cgroup_skb::CgroupSkb
  8467. pub const aya::programs::cgroup_skb::CgroupSkb::PROGRAM_TYPE: aya::programs::ProgramType
  8468. pub fn aya::programs::cgroup_skb::CgroupSkb::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLinkId, aya::programs::ProgramError>
  8469. pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>
  8470. pub fn aya::programs::cgroup_skb::CgroupSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, expected_attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8471. pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8472. impl aya::programs::cgroup_skb::CgroupSkb
  8473. pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8474. pub fn aya::programs::cgroup_skb::CgroupSkb::take_link(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLink, aya::programs::ProgramError>
  8475. impl aya::programs::cgroup_skb::CgroupSkb
  8476. pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8477. impl aya::programs::cgroup_skb::CgroupSkb
  8478. pub fn aya::programs::cgroup_skb::CgroupSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>) -> core::result::Result<Self, aya::programs::ProgramError>
  8479. impl aya::programs::cgroup_skb::CgroupSkb
  8480. pub fn aya::programs::cgroup_skb::CgroupSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8481. impl aya::programs::cgroup_skb::CgroupSkb
  8482. pub fn aya::programs::cgroup_skb::CgroupSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8483. pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8484. impl aya::programs::cgroup_skb::CgroupSkb
  8485. pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8486. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb
  8487. pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8488. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb
  8489. pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self)
  8490. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  8491. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  8492. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  8493. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  8494. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  8495. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  8496. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkb
  8497. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb
  8498. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb
  8499. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb
  8500. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  8501. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  8502. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From<T>
  8503. pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U
  8504. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into<T>
  8505. pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible
  8506. pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8507. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom<T>
  8508. pub type aya::programs::cgroup_skb::CgroupSkb::Error = <U as core::convert::TryFrom<T>>::Error
  8509. pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8510. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + ?core::marker::Sized
  8511. pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId
  8512. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  8513. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T
  8514. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  8515. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T
  8516. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkb
  8517. pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T
  8518. pub struct aya::programs::CgroupSock
  8519. impl aya::programs::cgroup_sock::CgroupSock
  8520. pub const aya::programs::cgroup_sock::CgroupSock::PROGRAM_TYPE: aya::programs::ProgramType
  8521. pub fn aya::programs::cgroup_sock::CgroupSock::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLinkId, aya::programs::ProgramError>
  8522. pub fn aya::programs::cgroup_sock::CgroupSock::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8523. pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8524. impl aya::programs::cgroup_sock::CgroupSock
  8525. pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8526. pub fn aya::programs::cgroup_sock::CgroupSock::take_link(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLink, aya::programs::ProgramError>
  8527. impl aya::programs::cgroup_sock::CgroupSock
  8528. pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8529. impl aya::programs::cgroup_sock::CgroupSock
  8530. pub fn aya::programs::cgroup_sock::CgroupSock::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8531. impl aya::programs::cgroup_sock::CgroupSock
  8532. pub fn aya::programs::cgroup_sock::CgroupSock::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8533. pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8534. impl aya::programs::cgroup_sock::CgroupSock
  8535. pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8536. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock
  8537. pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8538. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock
  8539. pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self)
  8540. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  8541. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  8542. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  8543. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  8544. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  8545. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  8546. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSock
  8547. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock
  8548. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock
  8549. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock
  8550. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock
  8551. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock
  8552. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From<T>
  8553. pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U
  8554. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into<T>
  8555. pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible
  8556. pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8557. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom<T>
  8558. pub type aya::programs::cgroup_sock::CgroupSock::Error = <U as core::convert::TryFrom<T>>::Error
  8559. pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8560. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + ?core::marker::Sized
  8561. pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId
  8562. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  8563. pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T
  8564. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  8565. pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T
  8566. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSock
  8567. pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T
  8568. pub struct aya::programs::CgroupSockAddr
  8569. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8570. pub const aya::programs::cgroup_sock_addr::CgroupSockAddr::PROGRAM_TYPE: aya::programs::ProgramType
  8571. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId, aya::programs::ProgramError>
  8572. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8573. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8574. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8575. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::detach(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8576. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::take_link(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLink, aya::programs::ProgramError>
  8577. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8578. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8579. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8580. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8581. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8582. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8583. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8584. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8585. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8586. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8587. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8588. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8589. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self)
  8590. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  8591. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  8592. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  8593. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  8594. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  8595. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  8596. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8597. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8598. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8599. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8600. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8601. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8602. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From<T>
  8603. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U
  8604. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into<T>
  8605. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible
  8606. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8607. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom<T>
  8608. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = <U as core::convert::TryFrom<T>>::Error
  8609. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8610. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + ?core::marker::Sized
  8611. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId
  8612. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  8613. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T
  8614. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  8615. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T
  8616. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8617. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T
  8618. pub struct aya::programs::CgroupSockopt
  8619. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8620. pub const aya::programs::cgroup_sockopt::CgroupSockopt::PROGRAM_TYPE: aya::programs::ProgramType
  8621. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLinkId, aya::programs::ProgramError>
  8622. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8623. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8624. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8625. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8626. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::take_link(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLink, aya::programs::ProgramError>
  8627. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8628. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8629. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8630. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8631. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8632. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8633. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8634. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8635. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8636. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8637. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8638. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt
  8639. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8640. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt
  8641. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self)
  8642. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  8643. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  8644. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  8645. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  8646. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  8647. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  8648. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockopt
  8649. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt
  8650. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt
  8651. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt
  8652. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  8653. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  8654. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From<T>
  8655. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U
  8656. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into<T>
  8657. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible
  8658. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8659. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom<T>
  8660. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = <U as core::convert::TryFrom<T>>::Error
  8661. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8662. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + ?core::marker::Sized
  8663. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId
  8664. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  8665. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T
  8666. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  8667. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T
  8668. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockopt
  8669. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T
  8670. pub struct aya::programs::CgroupSysctl
  8671. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8672. pub const aya::programs::cgroup_sysctl::CgroupSysctl::PROGRAM_TYPE: aya::programs::ProgramType
  8673. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLinkId, aya::programs::ProgramError>
  8674. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8675. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8676. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8677. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::take_link(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLink, aya::programs::ProgramError>
  8678. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8679. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8680. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8681. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8682. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8683. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8684. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8685. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8686. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8687. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8688. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8689. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8690. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8691. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl
  8692. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8693. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl
  8694. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self)
  8695. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  8696. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  8697. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  8698. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  8699. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  8700. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  8701. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctl
  8702. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl
  8703. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl
  8704. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl
  8705. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  8706. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  8707. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From<T>
  8708. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U
  8709. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into<T>
  8710. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible
  8711. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8712. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom<T>
  8713. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = <U as core::convert::TryFrom<T>>::Error
  8714. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8715. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + ?core::marker::Sized
  8716. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId
  8717. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  8718. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T
  8719. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  8720. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T
  8721. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctl
  8722. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T
  8723. pub struct aya::programs::Extension
  8724. impl aya::programs::extension::Extension
  8725. pub const aya::programs::extension::Extension::PROGRAM_TYPE: aya::programs::ProgramType
  8726. pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  8727. pub fn aya::programs::extension::Extension::attach_to_program(&mut self, program: &aya::programs::ProgramFd, func_name: &str) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  8728. pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError>
  8729. impl aya::programs::extension::Extension
  8730. pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8731. pub fn aya::programs::extension::Extension::take_link(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<aya::programs::extension::ExtensionLink, aya::programs::ProgramError>
  8732. impl aya::programs::extension::Extension
  8733. pub fn aya::programs::extension::Extension::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8734. impl aya::programs::extension::Extension
  8735. pub fn aya::programs::extension::Extension::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8736. impl aya::programs::extension::Extension
  8737. pub fn aya::programs::extension::Extension::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8738. impl aya::programs::extension::Extension
  8739. pub fn aya::programs::extension::Extension::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8740. impl aya::programs::extension::Extension
  8741. pub fn aya::programs::extension::Extension::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8742. pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8743. impl aya::programs::extension::Extension
  8744. pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8745. impl core::fmt::Debug for aya::programs::extension::Extension
  8746. pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8747. impl core::ops::drop::Drop for aya::programs::extension::Extension
  8748. pub fn aya::programs::extension::Extension::drop(&mut self)
  8749. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  8750. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  8751. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  8752. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  8753. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  8754. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  8755. impl core::marker::Freeze for aya::programs::extension::Extension
  8756. impl core::marker::Send for aya::programs::extension::Extension
  8757. impl core::marker::Sync for aya::programs::extension::Extension
  8758. impl core::marker::Unpin for aya::programs::extension::Extension
  8759. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension
  8760. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension
  8761. impl<T, U> core::convert::Into<U> for aya::programs::extension::Extension where U: core::convert::From<T>
  8762. pub fn aya::programs::extension::Extension::into(self) -> U
  8763. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::Extension where U: core::convert::Into<T>
  8764. pub type aya::programs::extension::Extension::Error = core::convert::Infallible
  8765. pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8766. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::Extension where U: core::convert::TryFrom<T>
  8767. pub type aya::programs::extension::Extension::Error = <U as core::convert::TryFrom<T>>::Error
  8768. pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8769. impl<T> core::any::Any for aya::programs::extension::Extension where T: 'static + ?core::marker::Sized
  8770. pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId
  8771. impl<T> core::borrow::Borrow<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  8772. pub fn aya::programs::extension::Extension::borrow(&self) -> &T
  8773. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  8774. pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T
  8775. impl<T> core::convert::From<T> for aya::programs::extension::Extension
  8776. pub fn aya::programs::extension::Extension::from(t: T) -> T
  8777. pub struct aya::programs::FEntry
  8778. impl aya::programs::fentry::FEntry
  8779. pub const aya::programs::fentry::FEntry::PROGRAM_TYPE: aya::programs::ProgramType
  8780. pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result<aya::programs::fentry::FEntryLinkId, aya::programs::ProgramError>
  8781. pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8782. impl aya::programs::fentry::FEntry
  8783. pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8784. pub fn aya::programs::fentry::FEntry::take_link(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<aya::programs::fentry::FEntryLink, aya::programs::ProgramError>
  8785. impl aya::programs::fentry::FEntry
  8786. pub fn aya::programs::fentry::FEntry::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8787. impl aya::programs::fentry::FEntry
  8788. pub fn aya::programs::fentry::FEntry::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8789. impl aya::programs::fentry::FEntry
  8790. pub unsafe fn aya::programs::fentry::FEntry::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8791. impl aya::programs::fentry::FEntry
  8792. pub fn aya::programs::fentry::FEntry::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8793. impl aya::programs::fentry::FEntry
  8794. pub fn aya::programs::fentry::FEntry::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8795. pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8796. impl aya::programs::fentry::FEntry
  8797. pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8798. impl core::fmt::Debug for aya::programs::fentry::FEntry
  8799. pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8800. impl core::ops::drop::Drop for aya::programs::fentry::FEntry
  8801. pub fn aya::programs::fentry::FEntry::drop(&mut self)
  8802. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  8803. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  8804. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  8805. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  8806. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  8807. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  8808. impl core::marker::Freeze for aya::programs::fentry::FEntry
  8809. impl core::marker::Send for aya::programs::fentry::FEntry
  8810. impl core::marker::Sync for aya::programs::fentry::FEntry
  8811. impl core::marker::Unpin for aya::programs::fentry::FEntry
  8812. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry
  8813. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry
  8814. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntry where U: core::convert::From<T>
  8815. pub fn aya::programs::fentry::FEntry::into(self) -> U
  8816. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntry where U: core::convert::Into<T>
  8817. pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible
  8818. pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8819. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntry where U: core::convert::TryFrom<T>
  8820. pub type aya::programs::fentry::FEntry::Error = <U as core::convert::TryFrom<T>>::Error
  8821. pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8822. impl<T> core::any::Any for aya::programs::fentry::FEntry where T: 'static + ?core::marker::Sized
  8823. pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId
  8824. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  8825. pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T
  8826. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  8827. pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T
  8828. impl<T> core::convert::From<T> for aya::programs::fentry::FEntry
  8829. pub fn aya::programs::fentry::FEntry::from(t: T) -> T
  8830. pub struct aya::programs::FExit
  8831. impl aya::programs::fexit::FExit
  8832. pub const aya::programs::fexit::FExit::PROGRAM_TYPE: aya::programs::ProgramType
  8833. pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result<aya::programs::fexit::FExitLinkId, aya::programs::ProgramError>
  8834. pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8835. impl aya::programs::fexit::FExit
  8836. pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8837. pub fn aya::programs::fexit::FExit::take_link(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<aya::programs::fexit::FExitLink, aya::programs::ProgramError>
  8838. impl aya::programs::fexit::FExit
  8839. pub fn aya::programs::fexit::FExit::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8840. impl aya::programs::fexit::FExit
  8841. pub fn aya::programs::fexit::FExit::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8842. impl aya::programs::fexit::FExit
  8843. pub unsafe fn aya::programs::fexit::FExit::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8844. impl aya::programs::fexit::FExit
  8845. pub fn aya::programs::fexit::FExit::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8846. impl aya::programs::fexit::FExit
  8847. pub fn aya::programs::fexit::FExit::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8848. pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8849. impl aya::programs::fexit::FExit
  8850. pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8851. impl core::fmt::Debug for aya::programs::fexit::FExit
  8852. pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8853. impl core::ops::drop::Drop for aya::programs::fexit::FExit
  8854. pub fn aya::programs::fexit::FExit::drop(&mut self)
  8855. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  8856. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  8857. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  8858. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  8859. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  8860. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  8861. impl core::marker::Freeze for aya::programs::fexit::FExit
  8862. impl core::marker::Send for aya::programs::fexit::FExit
  8863. impl core::marker::Sync for aya::programs::fexit::FExit
  8864. impl core::marker::Unpin for aya::programs::fexit::FExit
  8865. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit
  8866. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit
  8867. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExit where U: core::convert::From<T>
  8868. pub fn aya::programs::fexit::FExit::into(self) -> U
  8869. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExit where U: core::convert::Into<T>
  8870. pub type aya::programs::fexit::FExit::Error = core::convert::Infallible
  8871. pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8872. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExit where U: core::convert::TryFrom<T>
  8873. pub type aya::programs::fexit::FExit::Error = <U as core::convert::TryFrom<T>>::Error
  8874. pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8875. impl<T> core::any::Any for aya::programs::fexit::FExit where T: 'static + ?core::marker::Sized
  8876. pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId
  8877. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  8878. pub fn aya::programs::fexit::FExit::borrow(&self) -> &T
  8879. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  8880. pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T
  8881. impl<T> core::convert::From<T> for aya::programs::fexit::FExit
  8882. pub fn aya::programs::fexit::FExit::from(t: T) -> T
  8883. pub struct aya::programs::FlowDissector
  8884. impl aya::programs::flow_dissector::FlowDissector
  8885. pub const aya::programs::flow_dissector::FlowDissector::PROGRAM_TYPE: aya::programs::ProgramType
  8886. pub fn aya::programs::flow_dissector::FlowDissector::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLinkId, aya::programs::ProgramError>
  8887. pub fn aya::programs::flow_dissector::FlowDissector::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8888. impl aya::programs::flow_dissector::FlowDissector
  8889. pub fn aya::programs::flow_dissector::FlowDissector::detach(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8890. pub fn aya::programs::flow_dissector::FlowDissector::take_link(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLink, aya::programs::ProgramError>
  8891. impl aya::programs::flow_dissector::FlowDissector
  8892. pub fn aya::programs::flow_dissector::FlowDissector::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8893. impl aya::programs::flow_dissector::FlowDissector
  8894. pub fn aya::programs::flow_dissector::FlowDissector::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8895. impl aya::programs::flow_dissector::FlowDissector
  8896. pub fn aya::programs::flow_dissector::FlowDissector::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8897. impl aya::programs::flow_dissector::FlowDissector
  8898. pub fn aya::programs::flow_dissector::FlowDissector::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8899. pub fn aya::programs::flow_dissector::FlowDissector::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8900. impl aya::programs::flow_dissector::FlowDissector
  8901. pub fn aya::programs::flow_dissector::FlowDissector::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8902. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissector
  8903. pub fn aya::programs::flow_dissector::FlowDissector::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8904. impl core::ops::drop::Drop for aya::programs::flow_dissector::FlowDissector
  8905. pub fn aya::programs::flow_dissector::FlowDissector::drop(&mut self)
  8906. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::flow_dissector::FlowDissector
  8907. pub type &'a aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  8908. pub fn &'a aya::programs::flow_dissector::FlowDissector::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  8909. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::flow_dissector::FlowDissector
  8910. pub type &'a mut aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  8911. pub fn &'a mut aya::programs::flow_dissector::FlowDissector::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  8912. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissector
  8913. impl core::marker::Send for aya::programs::flow_dissector::FlowDissector
  8914. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissector
  8915. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissector
  8916. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissector
  8917. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissector
  8918. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::From<T>
  8919. pub fn aya::programs::flow_dissector::FlowDissector::into(self) -> U
  8920. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::Into<T>
  8921. pub type aya::programs::flow_dissector::FlowDissector::Error = core::convert::Infallible
  8922. pub fn aya::programs::flow_dissector::FlowDissector::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8923. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::TryFrom<T>
  8924. pub type aya::programs::flow_dissector::FlowDissector::Error = <U as core::convert::TryFrom<T>>::Error
  8925. pub fn aya::programs::flow_dissector::FlowDissector::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8926. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissector where T: 'static + ?core::marker::Sized
  8927. pub fn aya::programs::flow_dissector::FlowDissector::type_id(&self) -> core::any::TypeId
  8928. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  8929. pub fn aya::programs::flow_dissector::FlowDissector::borrow(&self) -> &T
  8930. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  8931. pub fn aya::programs::flow_dissector::FlowDissector::borrow_mut(&mut self) -> &mut T
  8932. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissector
  8933. pub fn aya::programs::flow_dissector::FlowDissector::from(t: T) -> T
  8934. pub struct aya::programs::Iter
  8935. impl aya::programs::iter::Iter
  8936. pub const aya::programs::iter::Iter::PROGRAM_TYPE: aya::programs::ProgramType
  8937. pub fn aya::programs::iter::Iter::attach(&mut self) -> core::result::Result<aya::programs::iter::IterLinkId, aya::programs::ProgramError>
  8938. pub fn aya::programs::iter::Iter::load(&mut self, iter_type: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8939. impl aya::programs::iter::Iter
  8940. pub fn aya::programs::iter::Iter::detach(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8941. pub fn aya::programs::iter::Iter::take_link(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<aya::programs::iter::IterLink, aya::programs::ProgramError>
  8942. impl aya::programs::iter::Iter
  8943. pub fn aya::programs::iter::Iter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8944. impl aya::programs::iter::Iter
  8945. pub fn aya::programs::iter::Iter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8946. impl aya::programs::iter::Iter
  8947. pub fn aya::programs::iter::Iter::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8948. impl aya::programs::iter::Iter
  8949. pub fn aya::programs::iter::Iter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8950. impl aya::programs::iter::Iter
  8951. pub fn aya::programs::iter::Iter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8952. pub fn aya::programs::iter::Iter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8953. impl aya::programs::iter::Iter
  8954. pub fn aya::programs::iter::Iter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8955. impl core::fmt::Debug for aya::programs::iter::Iter
  8956. pub fn aya::programs::iter::Iter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8957. impl core::ops::drop::Drop for aya::programs::iter::Iter
  8958. pub fn aya::programs::iter::Iter::drop(&mut self)
  8959. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::iter::Iter
  8960. pub type &'a aya::programs::iter::Iter::Error = aya::programs::ProgramError
  8961. pub fn &'a aya::programs::iter::Iter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::iter::Iter, aya::programs::ProgramError>
  8962. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::iter::Iter
  8963. pub type &'a mut aya::programs::iter::Iter::Error = aya::programs::ProgramError
  8964. pub fn &'a mut aya::programs::iter::Iter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::iter::Iter, aya::programs::ProgramError>
  8965. impl core::marker::Freeze for aya::programs::iter::Iter
  8966. impl core::marker::Send for aya::programs::iter::Iter
  8967. impl core::marker::Sync for aya::programs::iter::Iter
  8968. impl core::marker::Unpin for aya::programs::iter::Iter
  8969. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::Iter
  8970. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::Iter
  8971. impl<T, U> core::convert::Into<U> for aya::programs::iter::Iter where U: core::convert::From<T>
  8972. pub fn aya::programs::iter::Iter::into(self) -> U
  8973. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::Iter where U: core::convert::Into<T>
  8974. pub type aya::programs::iter::Iter::Error = core::convert::Infallible
  8975. pub fn aya::programs::iter::Iter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8976. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::Iter where U: core::convert::TryFrom<T>
  8977. pub type aya::programs::iter::Iter::Error = <U as core::convert::TryFrom<T>>::Error
  8978. pub fn aya::programs::iter::Iter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8979. impl<T> core::any::Any for aya::programs::iter::Iter where T: 'static + ?core::marker::Sized
  8980. pub fn aya::programs::iter::Iter::type_id(&self) -> core::any::TypeId
  8981. impl<T> core::borrow::Borrow<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  8982. pub fn aya::programs::iter::Iter::borrow(&self) -> &T
  8983. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  8984. pub fn aya::programs::iter::Iter::borrow_mut(&mut self) -> &mut T
  8985. impl<T> core::convert::From<T> for aya::programs::iter::Iter
  8986. pub fn aya::programs::iter::Iter::from(t: T) -> T
  8987. pub struct aya::programs::KProbe
  8988. impl aya::programs::kprobe::KProbe
  8989. pub const aya::programs::kprobe::KProbe::PROGRAM_TYPE: aya::programs::ProgramType
  8990. pub fn aya::programs::kprobe::KProbe::attach<T: core::convert::AsRef<std::ffi::os_str::OsStr>>(&mut self, fn_name: T, offset: u64) -> core::result::Result<aya::programs::kprobe::KProbeLinkId, aya::programs::ProgramError>
  8991. pub fn aya::programs::kprobe::KProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  8992. pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind
  8993. pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8994. impl aya::programs::kprobe::KProbe
  8995. pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8996. pub fn aya::programs::kprobe::KProbe::take_link(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<aya::programs::kprobe::KProbeLink, aya::programs::ProgramError>
  8997. impl aya::programs::kprobe::KProbe
  8998. pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8999. impl aya::programs::kprobe::KProbe
  9000. pub unsafe fn aya::programs::kprobe::KProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9001. impl aya::programs::kprobe::KProbe
  9002. pub fn aya::programs::kprobe::KProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9003. impl aya::programs::kprobe::KProbe
  9004. pub fn aya::programs::kprobe::KProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9005. pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9006. impl aya::programs::kprobe::KProbe
  9007. pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9008. impl core::fmt::Debug for aya::programs::kprobe::KProbe
  9009. pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9010. impl core::ops::drop::Drop for aya::programs::kprobe::KProbe
  9011. pub fn aya::programs::kprobe::KProbe::drop(&mut self)
  9012. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  9013. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  9014. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  9015. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  9016. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  9017. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  9018. impl core::marker::Freeze for aya::programs::kprobe::KProbe
  9019. impl core::marker::Send for aya::programs::kprobe::KProbe
  9020. impl core::marker::Sync for aya::programs::kprobe::KProbe
  9021. impl core::marker::Unpin for aya::programs::kprobe::KProbe
  9022. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe
  9023. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe
  9024. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbe where U: core::convert::From<T>
  9025. pub fn aya::programs::kprobe::KProbe::into(self) -> U
  9026. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbe where U: core::convert::Into<T>
  9027. pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible
  9028. pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9029. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbe where U: core::convert::TryFrom<T>
  9030. pub type aya::programs::kprobe::KProbe::Error = <U as core::convert::TryFrom<T>>::Error
  9031. pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9032. impl<T> core::any::Any for aya::programs::kprobe::KProbe where T: 'static + ?core::marker::Sized
  9033. pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId
  9034. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  9035. pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T
  9036. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  9037. pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T
  9038. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbe
  9039. pub fn aya::programs::kprobe::KProbe::from(t: T) -> T
  9040. pub struct aya::programs::LinkOrder
  9041. impl aya::programs::links::LinkOrder
  9042. pub fn aya::programs::links::LinkOrder::after_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  9043. pub fn aya::programs::links::LinkOrder::after_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  9044. pub fn aya::programs::links::LinkOrder::after_program_id(id: aya::programs::ProgramId) -> Self
  9045. pub fn aya::programs::links::LinkOrder::before_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  9046. pub fn aya::programs::links::LinkOrder::before_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  9047. pub fn aya::programs::links::LinkOrder::before_program_id(id: aya::programs::ProgramId) -> Self
  9048. pub fn aya::programs::links::LinkOrder::first() -> Self
  9049. pub fn aya::programs::links::LinkOrder::last() -> Self
  9050. impl core::default::Default for aya::programs::links::LinkOrder
  9051. pub fn aya::programs::links::LinkOrder::default() -> Self
  9052. impl core::fmt::Debug for aya::programs::links::LinkOrder
  9053. pub fn aya::programs::links::LinkOrder::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9054. impl core::marker::Freeze for aya::programs::links::LinkOrder
  9055. impl core::marker::Send for aya::programs::links::LinkOrder
  9056. impl core::marker::Sync for aya::programs::links::LinkOrder
  9057. impl core::marker::Unpin for aya::programs::links::LinkOrder
  9058. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkOrder
  9059. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkOrder
  9060. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkOrder where U: core::convert::From<T>
  9061. pub fn aya::programs::links::LinkOrder::into(self) -> U
  9062. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkOrder where U: core::convert::Into<T>
  9063. pub type aya::programs::links::LinkOrder::Error = core::convert::Infallible
  9064. pub fn aya::programs::links::LinkOrder::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9065. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkOrder where U: core::convert::TryFrom<T>
  9066. pub type aya::programs::links::LinkOrder::Error = <U as core::convert::TryFrom<T>>::Error
  9067. pub fn aya::programs::links::LinkOrder::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9068. impl<T> core::any::Any for aya::programs::links::LinkOrder where T: 'static + ?core::marker::Sized
  9069. pub fn aya::programs::links::LinkOrder::type_id(&self) -> core::any::TypeId
  9070. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  9071. pub fn aya::programs::links::LinkOrder::borrow(&self) -> &T
  9072. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  9073. pub fn aya::programs::links::LinkOrder::borrow_mut(&mut self) -> &mut T
  9074. impl<T> core::convert::From<T> for aya::programs::links::LinkOrder
  9075. pub fn aya::programs::links::LinkOrder::from(t: T) -> T
  9076. pub struct aya::programs::LircMode2
  9077. impl aya::programs::lirc_mode2::LircMode2
  9078. pub const aya::programs::lirc_mode2::LircMode2::PROGRAM_TYPE: aya::programs::ProgramType
  9079. pub fn aya::programs::lirc_mode2::LircMode2::attach<T: std::os::fd::owned::AsFd>(&mut self, lircdev: T) -> core::result::Result<aya::programs::lirc_mode2::LircLinkId, aya::programs::ProgramError>
  9080. pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9081. pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9082. pub fn aya::programs::lirc_mode2::LircMode2::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::lirc_mode2::LircLink>, aya::programs::ProgramError>
  9083. pub fn aya::programs::lirc_mode2::LircMode2::take_link(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<aya::programs::lirc_mode2::LircLink, aya::programs::ProgramError>
  9084. impl aya::programs::lirc_mode2::LircMode2
  9085. pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9086. impl aya::programs::lirc_mode2::LircMode2
  9087. pub fn aya::programs::lirc_mode2::LircMode2::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9088. impl aya::programs::lirc_mode2::LircMode2
  9089. pub fn aya::programs::lirc_mode2::LircMode2::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9090. impl aya::programs::lirc_mode2::LircMode2
  9091. pub fn aya::programs::lirc_mode2::LircMode2::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9092. impl aya::programs::lirc_mode2::LircMode2
  9093. pub fn aya::programs::lirc_mode2::LircMode2::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9094. pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9095. impl aya::programs::lirc_mode2::LircMode2
  9096. pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9097. impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2
  9098. pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9099. impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2
  9100. pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self)
  9101. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  9102. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  9103. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  9104. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  9105. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  9106. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  9107. impl core::marker::Freeze for aya::programs::lirc_mode2::LircMode2
  9108. impl core::marker::Send for aya::programs::lirc_mode2::LircMode2
  9109. impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2
  9110. impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2
  9111. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2
  9112. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2
  9113. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From<T>
  9114. pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U
  9115. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into<T>
  9116. pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible
  9117. pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9118. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom<T>
  9119. pub type aya::programs::lirc_mode2::LircMode2::Error = <U as core::convert::TryFrom<T>>::Error
  9120. pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9121. impl<T> core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + ?core::marker::Sized
  9122. pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId
  9123. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  9124. pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T
  9125. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  9126. pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T
  9127. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircMode2
  9128. pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T
  9129. pub struct aya::programs::Lsm
  9130. impl aya::programs::lsm::Lsm
  9131. pub const aya::programs::lsm::Lsm::PROGRAM_TYPE: aya::programs::ProgramType
  9132. pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result<aya::programs::lsm::LsmLinkId, aya::programs::ProgramError>
  9133. pub fn aya::programs::lsm::Lsm::load(&mut self, lsm_hook_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  9134. impl aya::programs::lsm::Lsm
  9135. pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9136. pub fn aya::programs::lsm::Lsm::take_link(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<aya::programs::lsm::LsmLink, aya::programs::ProgramError>
  9137. impl aya::programs::lsm::Lsm
  9138. pub fn aya::programs::lsm::Lsm::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9139. impl aya::programs::lsm::Lsm
  9140. pub fn aya::programs::lsm::Lsm::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9141. impl aya::programs::lsm::Lsm
  9142. pub fn aya::programs::lsm::Lsm::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9143. impl aya::programs::lsm::Lsm
  9144. pub fn aya::programs::lsm::Lsm::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9145. impl aya::programs::lsm::Lsm
  9146. pub fn aya::programs::lsm::Lsm::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9147. pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9148. impl aya::programs::lsm::Lsm
  9149. pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9150. impl core::fmt::Debug for aya::programs::lsm::Lsm
  9151. pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9152. impl core::ops::drop::Drop for aya::programs::lsm::Lsm
  9153. pub fn aya::programs::lsm::Lsm::drop(&mut self)
  9154. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  9155. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  9156. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  9157. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  9158. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  9159. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  9160. impl core::marker::Freeze for aya::programs::lsm::Lsm
  9161. impl core::marker::Send for aya::programs::lsm::Lsm
  9162. impl core::marker::Sync for aya::programs::lsm::Lsm
  9163. impl core::marker::Unpin for aya::programs::lsm::Lsm
  9164. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm
  9165. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm
  9166. impl<T, U> core::convert::Into<U> for aya::programs::lsm::Lsm where U: core::convert::From<T>
  9167. pub fn aya::programs::lsm::Lsm::into(self) -> U
  9168. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::Lsm where U: core::convert::Into<T>
  9169. pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible
  9170. pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9171. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::Lsm where U: core::convert::TryFrom<T>
  9172. pub type aya::programs::lsm::Lsm::Error = <U as core::convert::TryFrom<T>>::Error
  9173. pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9174. impl<T> core::any::Any for aya::programs::lsm::Lsm where T: 'static + ?core::marker::Sized
  9175. pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId
  9176. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  9177. pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T
  9178. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  9179. pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T
  9180. impl<T> core::convert::From<T> for aya::programs::lsm::Lsm
  9181. pub fn aya::programs::lsm::Lsm::from(t: T) -> T
  9182. pub struct aya::programs::PerfEvent
  9183. impl aya::programs::perf_event::PerfEvent
  9184. pub const aya::programs::perf_event::PerfEvent::PROGRAM_TYPE: aya::programs::ProgramType
  9185. pub fn aya::programs::perf_event::PerfEvent::attach(&mut self, perf_type: aya::programs::perf_event::PerfTypeId, config: u64, scope: aya::programs::perf_event::PerfEventScope, sample_policy: aya::programs::perf_event::SamplePolicy, inherit: bool) -> core::result::Result<aya::programs::perf_event::PerfEventLinkId, aya::programs::ProgramError>
  9186. pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9187. impl aya::programs::perf_event::PerfEvent
  9188. pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9189. pub fn aya::programs::perf_event::PerfEvent::take_link(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<aya::programs::perf_event::PerfEventLink, aya::programs::ProgramError>
  9190. impl aya::programs::perf_event::PerfEvent
  9191. pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9192. impl aya::programs::perf_event::PerfEvent
  9193. pub fn aya::programs::perf_event::PerfEvent::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9194. impl aya::programs::perf_event::PerfEvent
  9195. pub fn aya::programs::perf_event::PerfEvent::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9196. impl aya::programs::perf_event::PerfEvent
  9197. pub fn aya::programs::perf_event::PerfEvent::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9198. impl aya::programs::perf_event::PerfEvent
  9199. pub fn aya::programs::perf_event::PerfEvent::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9200. pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9201. impl aya::programs::perf_event::PerfEvent
  9202. pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9203. impl core::fmt::Debug for aya::programs::perf_event::PerfEvent
  9204. pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9205. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent
  9206. pub fn aya::programs::perf_event::PerfEvent::drop(&mut self)
  9207. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  9208. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  9209. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  9210. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  9211. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  9212. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  9213. impl core::marker::Freeze for aya::programs::perf_event::PerfEvent
  9214. impl core::marker::Send for aya::programs::perf_event::PerfEvent
  9215. impl core::marker::Sync for aya::programs::perf_event::PerfEvent
  9216. impl core::marker::Unpin for aya::programs::perf_event::PerfEvent
  9217. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent
  9218. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent
  9219. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEvent where U: core::convert::From<T>
  9220. pub fn aya::programs::perf_event::PerfEvent::into(self) -> U
  9221. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEvent where U: core::convert::Into<T>
  9222. pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible
  9223. pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9224. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom<T>
  9225. pub type aya::programs::perf_event::PerfEvent::Error = <U as core::convert::TryFrom<T>>::Error
  9226. pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9227. impl<T> core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + ?core::marker::Sized
  9228. pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId
  9229. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  9230. pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T
  9231. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  9232. pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T
  9233. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEvent
  9234. pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T
  9235. pub struct aya::programs::ProgramFd(_)
  9236. impl aya::programs::ProgramFd
  9237. pub fn aya::programs::ProgramFd::try_clone(&self) -> std::io::error::Result<Self>
  9238. impl core::fmt::Debug for aya::programs::ProgramFd
  9239. pub fn aya::programs::ProgramFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9240. impl std::os::fd::owned::AsFd for aya::programs::ProgramFd
  9241. pub fn aya::programs::ProgramFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  9242. impl core::marker::Freeze for aya::programs::ProgramFd
  9243. impl core::marker::Send for aya::programs::ProgramFd
  9244. impl core::marker::Sync for aya::programs::ProgramFd
  9245. impl core::marker::Unpin for aya::programs::ProgramFd
  9246. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramFd
  9247. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramFd
  9248. impl<T, U> core::convert::Into<U> for aya::programs::ProgramFd where U: core::convert::From<T>
  9249. pub fn aya::programs::ProgramFd::into(self) -> U
  9250. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramFd where U: core::convert::Into<T>
  9251. pub type aya::programs::ProgramFd::Error = core::convert::Infallible
  9252. pub fn aya::programs::ProgramFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9253. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramFd where U: core::convert::TryFrom<T>
  9254. pub type aya::programs::ProgramFd::Error = <U as core::convert::TryFrom<T>>::Error
  9255. pub fn aya::programs::ProgramFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9256. impl<T> core::any::Any for aya::programs::ProgramFd where T: 'static + ?core::marker::Sized
  9257. pub fn aya::programs::ProgramFd::type_id(&self) -> core::any::TypeId
  9258. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramFd where T: ?core::marker::Sized
  9259. pub fn aya::programs::ProgramFd::borrow(&self) -> &T
  9260. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramFd where T: ?core::marker::Sized
  9261. pub fn aya::programs::ProgramFd::borrow_mut(&mut self) -> &mut T
  9262. impl<T> core::convert::From<T> for aya::programs::ProgramFd
  9263. pub fn aya::programs::ProgramFd::from(t: T) -> T
  9264. pub struct aya::programs::ProgramId(_)
  9265. impl aya::programs::ProgramId
  9266. pub unsafe fn aya::programs::ProgramId::new(id: u32) -> Self
  9267. impl core::marker::Freeze for aya::programs::ProgramId
  9268. impl core::marker::Send for aya::programs::ProgramId
  9269. impl core::marker::Sync for aya::programs::ProgramId
  9270. impl core::marker::Unpin for aya::programs::ProgramId
  9271. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramId
  9272. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramId
  9273. impl<T, U> core::convert::Into<U> for aya::programs::ProgramId where U: core::convert::From<T>
  9274. pub fn aya::programs::ProgramId::into(self) -> U
  9275. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramId where U: core::convert::Into<T>
  9276. pub type aya::programs::ProgramId::Error = core::convert::Infallible
  9277. pub fn aya::programs::ProgramId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9278. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramId where U: core::convert::TryFrom<T>
  9279. pub type aya::programs::ProgramId::Error = <U as core::convert::TryFrom<T>>::Error
  9280. pub fn aya::programs::ProgramId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9281. impl<T> core::any::Any for aya::programs::ProgramId where T: 'static + ?core::marker::Sized
  9282. pub fn aya::programs::ProgramId::type_id(&self) -> core::any::TypeId
  9283. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramId where T: ?core::marker::Sized
  9284. pub fn aya::programs::ProgramId::borrow(&self) -> &T
  9285. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramId where T: ?core::marker::Sized
  9286. pub fn aya::programs::ProgramId::borrow_mut(&mut self) -> &mut T
  9287. impl<T> core::convert::From<T> for aya::programs::ProgramId
  9288. pub fn aya::programs::ProgramId::from(t: T) -> T
  9289. pub struct aya::programs::ProgramInfo(_)
  9290. impl aya::programs::ProgramInfo
  9291. pub fn aya::programs::ProgramInfo::btf_id(&self) -> core::option::Option<u32>
  9292. pub fn aya::programs::ProgramInfo::created_by_uid(&self) -> core::option::Option<u32>
  9293. pub fn aya::programs::ProgramInfo::fd(&self) -> core::result::Result<aya::programs::ProgramFd, aya::programs::ProgramError>
  9294. pub fn aya::programs::ProgramInfo::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9295. pub fn aya::programs::ProgramInfo::gpl_compatible(&self) -> core::option::Option<bool>
  9296. pub fn aya::programs::ProgramInfo::id(&self) -> u32
  9297. pub fn aya::programs::ProgramInfo::loaded_at(&self) -> core::option::Option<std::time::SystemTime>
  9298. pub fn aya::programs::ProgramInfo::map_ids(&self) -> core::result::Result<core::option::Option<alloc::vec::Vec<u32>>, aya::programs::ProgramError>
  9299. pub fn aya::programs::ProgramInfo::memory_locked(&self) -> core::result::Result<u32, aya::programs::ProgramError>
  9300. pub fn aya::programs::ProgramInfo::name(&self) -> &[u8]
  9301. pub fn aya::programs::ProgramInfo::name_as_str(&self) -> core::option::Option<&str>
  9302. pub fn aya::programs::ProgramInfo::program_type(&self) -> core::result::Result<aya::programs::ProgramType, aya::programs::ProgramError>
  9303. pub fn aya::programs::ProgramInfo::run_count(&self) -> u64
  9304. pub fn aya::programs::ProgramInfo::run_time(&self) -> core::time::Duration
  9305. pub fn aya::programs::ProgramInfo::size_jitted(&self) -> u32
  9306. pub fn aya::programs::ProgramInfo::size_translated(&self) -> core::option::Option<u32>
  9307. pub fn aya::programs::ProgramInfo::tag(&self) -> u64
  9308. pub fn aya::programs::ProgramInfo::verified_instruction_count(&self) -> core::option::Option<u32>
  9309. impl core::fmt::Debug for aya::programs::ProgramInfo
  9310. pub fn aya::programs::ProgramInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9311. impl core::marker::Freeze for aya::programs::ProgramInfo
  9312. impl core::marker::Send for aya::programs::ProgramInfo
  9313. impl core::marker::Sync for aya::programs::ProgramInfo
  9314. impl core::marker::Unpin for aya::programs::ProgramInfo
  9315. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramInfo
  9316. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramInfo
  9317. impl<T, U> core::convert::Into<U> for aya::programs::ProgramInfo where U: core::convert::From<T>
  9318. pub fn aya::programs::ProgramInfo::into(self) -> U
  9319. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramInfo where U: core::convert::Into<T>
  9320. pub type aya::programs::ProgramInfo::Error = core::convert::Infallible
  9321. pub fn aya::programs::ProgramInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9322. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramInfo where U: core::convert::TryFrom<T>
  9323. pub type aya::programs::ProgramInfo::Error = <U as core::convert::TryFrom<T>>::Error
  9324. pub fn aya::programs::ProgramInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9325. impl<T> core::any::Any for aya::programs::ProgramInfo where T: 'static + ?core::marker::Sized
  9326. pub fn aya::programs::ProgramInfo::type_id(&self) -> core::any::TypeId
  9327. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramInfo where T: ?core::marker::Sized
  9328. pub fn aya::programs::ProgramInfo::borrow(&self) -> &T
  9329. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramInfo where T: ?core::marker::Sized
  9330. pub fn aya::programs::ProgramInfo::borrow_mut(&mut self) -> &mut T
  9331. impl<T> core::convert::From<T> for aya::programs::ProgramInfo
  9332. pub fn aya::programs::ProgramInfo::from(t: T) -> T
  9333. pub struct aya::programs::RawTracePoint
  9334. impl aya::programs::raw_trace_point::RawTracePoint
  9335. pub const aya::programs::raw_trace_point::RawTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  9336. pub fn aya::programs::raw_trace_point::RawTracePoint::attach(&mut self, tp_name: &str) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLinkId, aya::programs::ProgramError>
  9337. pub fn aya::programs::raw_trace_point::RawTracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9338. impl aya::programs::raw_trace_point::RawTracePoint
  9339. pub fn aya::programs::raw_trace_point::RawTracePoint::detach(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9340. pub fn aya::programs::raw_trace_point::RawTracePoint::take_link(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLink, aya::programs::ProgramError>
  9341. impl aya::programs::raw_trace_point::RawTracePoint
  9342. pub fn aya::programs::raw_trace_point::RawTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9343. impl aya::programs::raw_trace_point::RawTracePoint
  9344. pub fn aya::programs::raw_trace_point::RawTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9345. impl aya::programs::raw_trace_point::RawTracePoint
  9346. pub fn aya::programs::raw_trace_point::RawTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9347. impl aya::programs::raw_trace_point::RawTracePoint
  9348. pub fn aya::programs::raw_trace_point::RawTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9349. impl aya::programs::raw_trace_point::RawTracePoint
  9350. pub fn aya::programs::raw_trace_point::RawTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9351. pub fn aya::programs::raw_trace_point::RawTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9352. impl aya::programs::raw_trace_point::RawTracePoint
  9353. pub fn aya::programs::raw_trace_point::RawTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9354. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePoint
  9355. pub fn aya::programs::raw_trace_point::RawTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9356. impl core::ops::drop::Drop for aya::programs::raw_trace_point::RawTracePoint
  9357. pub fn aya::programs::raw_trace_point::RawTracePoint::drop(&mut self)
  9358. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::raw_trace_point::RawTracePoint
  9359. pub type &'a aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  9360. pub fn &'a aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  9361. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::raw_trace_point::RawTracePoint
  9362. pub type &'a mut aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  9363. pub fn &'a mut aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  9364. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePoint
  9365. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePoint
  9366. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePoint
  9367. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePoint
  9368. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  9369. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  9370. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::From<T>
  9371. pub fn aya::programs::raw_trace_point::RawTracePoint::into(self) -> U
  9372. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::Into<T>
  9373. pub type aya::programs::raw_trace_point::RawTracePoint::Error = core::convert::Infallible
  9374. pub fn aya::programs::raw_trace_point::RawTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9375. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::TryFrom<T>
  9376. pub type aya::programs::raw_trace_point::RawTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  9377. pub fn aya::programs::raw_trace_point::RawTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9378. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePoint where T: 'static + ?core::marker::Sized
  9379. pub fn aya::programs::raw_trace_point::RawTracePoint::type_id(&self) -> core::any::TypeId
  9380. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  9381. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow(&self) -> &T
  9382. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  9383. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow_mut(&mut self) -> &mut T
  9384. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePoint
  9385. pub fn aya::programs::raw_trace_point::RawTracePoint::from(t: T) -> T
  9386. pub struct aya::programs::SchedClassifier
  9387. impl aya::programs::tc::SchedClassifier
  9388. pub const aya::programs::tc::SchedClassifier::PROGRAM_TYPE: aya::programs::ProgramType
  9389. pub fn aya::programs::tc::SchedClassifier::attach(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  9390. pub fn aya::programs::tc::SchedClassifier::attach_to_link(&mut self, link: aya::programs::tc::SchedClassifierLink) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  9391. pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcAttachOptions) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  9392. pub fn aya::programs::tc::SchedClassifier::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9393. pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9394. pub fn aya::programs::tc::SchedClassifier::query_tcx(interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<(u64, alloc::vec::Vec<aya::programs::ProgramInfo>), aya::programs::ProgramError>
  9395. impl aya::programs::tc::SchedClassifier
  9396. pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9397. pub fn aya::programs::tc::SchedClassifier::take_link(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<aya::programs::tc::SchedClassifierLink, aya::programs::ProgramError>
  9398. impl aya::programs::tc::SchedClassifier
  9399. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9400. impl aya::programs::tc::SchedClassifier
  9401. pub fn aya::programs::tc::SchedClassifier::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9402. impl aya::programs::tc::SchedClassifier
  9403. pub fn aya::programs::tc::SchedClassifier::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9404. impl aya::programs::tc::SchedClassifier
  9405. pub fn aya::programs::tc::SchedClassifier::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9406. pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9407. impl aya::programs::tc::SchedClassifier
  9408. pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9409. impl aya::programs::MultiProgram for aya::programs::tc::SchedClassifier
  9410. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  9411. impl core::fmt::Debug for aya::programs::tc::SchedClassifier
  9412. pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9413. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier
  9414. pub fn aya::programs::tc::SchedClassifier::drop(&mut self)
  9415. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  9416. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  9417. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  9418. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  9419. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  9420. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  9421. impl core::marker::Freeze for aya::programs::tc::SchedClassifier
  9422. impl core::marker::Send for aya::programs::tc::SchedClassifier
  9423. impl core::marker::Sync for aya::programs::tc::SchedClassifier
  9424. impl core::marker::Unpin for aya::programs::tc::SchedClassifier
  9425. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier
  9426. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier
  9427. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifier where U: core::convert::From<T>
  9428. pub fn aya::programs::tc::SchedClassifier::into(self) -> U
  9429. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifier where U: core::convert::Into<T>
  9430. pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible
  9431. pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9432. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom<T>
  9433. pub type aya::programs::tc::SchedClassifier::Error = <U as core::convert::TryFrom<T>>::Error
  9434. pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9435. impl<T> core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + ?core::marker::Sized
  9436. pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId
  9437. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  9438. pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T
  9439. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  9440. pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T
  9441. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifier
  9442. pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T
  9443. pub struct aya::programs::SkLookup
  9444. impl aya::programs::sk_lookup::SkLookup
  9445. pub const aya::programs::sk_lookup::SkLookup::PROGRAM_TYPE: aya::programs::ProgramType
  9446. pub fn aya::programs::sk_lookup::SkLookup::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::sk_lookup::SkLookupLinkId, aya::programs::ProgramError>
  9447. pub fn aya::programs::sk_lookup::SkLookup::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9448. impl aya::programs::sk_lookup::SkLookup
  9449. pub fn aya::programs::sk_lookup::SkLookup::detach(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9450. pub fn aya::programs::sk_lookup::SkLookup::take_link(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<aya::programs::sk_lookup::SkLookupLink, aya::programs::ProgramError>
  9451. impl aya::programs::sk_lookup::SkLookup
  9452. pub fn aya::programs::sk_lookup::SkLookup::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9453. impl aya::programs::sk_lookup::SkLookup
  9454. pub fn aya::programs::sk_lookup::SkLookup::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9455. impl aya::programs::sk_lookup::SkLookup
  9456. pub fn aya::programs::sk_lookup::SkLookup::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9457. impl aya::programs::sk_lookup::SkLookup
  9458. pub fn aya::programs::sk_lookup::SkLookup::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9459. impl aya::programs::sk_lookup::SkLookup
  9460. pub fn aya::programs::sk_lookup::SkLookup::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9461. pub fn aya::programs::sk_lookup::SkLookup::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9462. impl aya::programs::sk_lookup::SkLookup
  9463. pub fn aya::programs::sk_lookup::SkLookup::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9464. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookup
  9465. pub fn aya::programs::sk_lookup::SkLookup::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9466. impl core::ops::drop::Drop for aya::programs::sk_lookup::SkLookup
  9467. pub fn aya::programs::sk_lookup::SkLookup::drop(&mut self)
  9468. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_lookup::SkLookup
  9469. pub type &'a aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  9470. pub fn &'a aya::programs::sk_lookup::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  9471. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_lookup::SkLookup
  9472. pub type &'a mut aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  9473. pub fn &'a mut aya::programs::sk_lookup::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  9474. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookup
  9475. impl core::marker::Send for aya::programs::sk_lookup::SkLookup
  9476. impl core::marker::Sync for aya::programs::sk_lookup::SkLookup
  9477. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookup
  9478. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookup
  9479. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookup
  9480. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::From<T>
  9481. pub fn aya::programs::sk_lookup::SkLookup::into(self) -> U
  9482. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::Into<T>
  9483. pub type aya::programs::sk_lookup::SkLookup::Error = core::convert::Infallible
  9484. pub fn aya::programs::sk_lookup::SkLookup::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9485. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::TryFrom<T>
  9486. pub type aya::programs::sk_lookup::SkLookup::Error = <U as core::convert::TryFrom<T>>::Error
  9487. pub fn aya::programs::sk_lookup::SkLookup::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9488. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookup where T: 'static + ?core::marker::Sized
  9489. pub fn aya::programs::sk_lookup::SkLookup::type_id(&self) -> core::any::TypeId
  9490. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  9491. pub fn aya::programs::sk_lookup::SkLookup::borrow(&self) -> &T
  9492. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  9493. pub fn aya::programs::sk_lookup::SkLookup::borrow_mut(&mut self) -> &mut T
  9494. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookup
  9495. pub fn aya::programs::sk_lookup::SkLookup::from(t: T) -> T
  9496. pub struct aya::programs::SkMsg
  9497. impl aya::programs::sk_msg::SkMsg
  9498. pub const aya::programs::sk_msg::SkMsg::PROGRAM_TYPE: aya::programs::ProgramType
  9499. pub fn aya::programs::sk_msg::SkMsg::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_msg::SkMsgLinkId, aya::programs::ProgramError>
  9500. pub fn aya::programs::sk_msg::SkMsg::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9501. impl aya::programs::sk_msg::SkMsg
  9502. pub fn aya::programs::sk_msg::SkMsg::detach(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9503. pub fn aya::programs::sk_msg::SkMsg::take_link(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<aya::programs::sk_msg::SkMsgLink, aya::programs::ProgramError>
  9504. impl aya::programs::sk_msg::SkMsg
  9505. pub fn aya::programs::sk_msg::SkMsg::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9506. impl aya::programs::sk_msg::SkMsg
  9507. pub fn aya::programs::sk_msg::SkMsg::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9508. impl aya::programs::sk_msg::SkMsg
  9509. pub fn aya::programs::sk_msg::SkMsg::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9510. impl aya::programs::sk_msg::SkMsg
  9511. pub fn aya::programs::sk_msg::SkMsg::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9512. impl aya::programs::sk_msg::SkMsg
  9513. pub fn aya::programs::sk_msg::SkMsg::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9514. pub fn aya::programs::sk_msg::SkMsg::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9515. impl aya::programs::sk_msg::SkMsg
  9516. pub fn aya::programs::sk_msg::SkMsg::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9517. impl core::fmt::Debug for aya::programs::sk_msg::SkMsg
  9518. pub fn aya::programs::sk_msg::SkMsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9519. impl core::ops::drop::Drop for aya::programs::sk_msg::SkMsg
  9520. pub fn aya::programs::sk_msg::SkMsg::drop(&mut self)
  9521. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_msg::SkMsg
  9522. pub type &'a aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  9523. pub fn &'a aya::programs::sk_msg::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  9524. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_msg::SkMsg
  9525. pub type &'a mut aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  9526. pub fn &'a mut aya::programs::sk_msg::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  9527. impl core::marker::Freeze for aya::programs::sk_msg::SkMsg
  9528. impl core::marker::Send for aya::programs::sk_msg::SkMsg
  9529. impl core::marker::Sync for aya::programs::sk_msg::SkMsg
  9530. impl core::marker::Unpin for aya::programs::sk_msg::SkMsg
  9531. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsg
  9532. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsg
  9533. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsg where U: core::convert::From<T>
  9534. pub fn aya::programs::sk_msg::SkMsg::into(self) -> U
  9535. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsg where U: core::convert::Into<T>
  9536. pub type aya::programs::sk_msg::SkMsg::Error = core::convert::Infallible
  9537. pub fn aya::programs::sk_msg::SkMsg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9538. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsg where U: core::convert::TryFrom<T>
  9539. pub type aya::programs::sk_msg::SkMsg::Error = <U as core::convert::TryFrom<T>>::Error
  9540. pub fn aya::programs::sk_msg::SkMsg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9541. impl<T> core::any::Any for aya::programs::sk_msg::SkMsg where T: 'static + ?core::marker::Sized
  9542. pub fn aya::programs::sk_msg::SkMsg::type_id(&self) -> core::any::TypeId
  9543. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  9544. pub fn aya::programs::sk_msg::SkMsg::borrow(&self) -> &T
  9545. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  9546. pub fn aya::programs::sk_msg::SkMsg::borrow_mut(&mut self) -> &mut T
  9547. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsg
  9548. pub fn aya::programs::sk_msg::SkMsg::from(t: T) -> T
  9549. pub struct aya::programs::SkSkb
  9550. impl aya::programs::sk_skb::SkSkb
  9551. pub const aya::programs::sk_skb::SkSkb::PROGRAM_TYPE: aya::programs::ProgramType
  9552. pub fn aya::programs::sk_skb::SkSkb::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_skb::SkSkbLinkId, aya::programs::ProgramError>
  9553. pub fn aya::programs::sk_skb::SkSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9554. pub fn aya::programs::sk_skb::SkSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9555. impl aya::programs::sk_skb::SkSkb
  9556. pub fn aya::programs::sk_skb::SkSkb::detach(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9557. pub fn aya::programs::sk_skb::SkSkb::take_link(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<aya::programs::sk_skb::SkSkbLink, aya::programs::ProgramError>
  9558. impl aya::programs::sk_skb::SkSkb
  9559. pub fn aya::programs::sk_skb::SkSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9560. impl aya::programs::sk_skb::SkSkb
  9561. pub fn aya::programs::sk_skb::SkSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9562. impl aya::programs::sk_skb::SkSkb
  9563. pub fn aya::programs::sk_skb::SkSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9564. impl aya::programs::sk_skb::SkSkb
  9565. pub fn aya::programs::sk_skb::SkSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9566. pub fn aya::programs::sk_skb::SkSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9567. impl aya::programs::sk_skb::SkSkb
  9568. pub fn aya::programs::sk_skb::SkSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9569. impl core::fmt::Debug for aya::programs::sk_skb::SkSkb
  9570. pub fn aya::programs::sk_skb::SkSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9571. impl core::ops::drop::Drop for aya::programs::sk_skb::SkSkb
  9572. pub fn aya::programs::sk_skb::SkSkb::drop(&mut self)
  9573. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_skb::SkSkb
  9574. pub type &'a aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  9575. pub fn &'a aya::programs::sk_skb::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  9576. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_skb::SkSkb
  9577. pub type &'a mut aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  9578. pub fn &'a mut aya::programs::sk_skb::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  9579. impl core::marker::Freeze for aya::programs::sk_skb::SkSkb
  9580. impl core::marker::Send for aya::programs::sk_skb::SkSkb
  9581. impl core::marker::Sync for aya::programs::sk_skb::SkSkb
  9582. impl core::marker::Unpin for aya::programs::sk_skb::SkSkb
  9583. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkb
  9584. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkb
  9585. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkb where U: core::convert::From<T>
  9586. pub fn aya::programs::sk_skb::SkSkb::into(self) -> U
  9587. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkb where U: core::convert::Into<T>
  9588. pub type aya::programs::sk_skb::SkSkb::Error = core::convert::Infallible
  9589. pub fn aya::programs::sk_skb::SkSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9590. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkb where U: core::convert::TryFrom<T>
  9591. pub type aya::programs::sk_skb::SkSkb::Error = <U as core::convert::TryFrom<T>>::Error
  9592. pub fn aya::programs::sk_skb::SkSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9593. impl<T> core::any::Any for aya::programs::sk_skb::SkSkb where T: 'static + ?core::marker::Sized
  9594. pub fn aya::programs::sk_skb::SkSkb::type_id(&self) -> core::any::TypeId
  9595. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  9596. pub fn aya::programs::sk_skb::SkSkb::borrow(&self) -> &T
  9597. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  9598. pub fn aya::programs::sk_skb::SkSkb::borrow_mut(&mut self) -> &mut T
  9599. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkb
  9600. pub fn aya::programs::sk_skb::SkSkb::from(t: T) -> T
  9601. pub struct aya::programs::SockOps
  9602. impl aya::programs::sock_ops::SockOps
  9603. pub const aya::programs::sock_ops::SockOps::PROGRAM_TYPE: aya::programs::ProgramType
  9604. pub fn aya::programs::sock_ops::SockOps::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::sock_ops::SockOpsLinkId, aya::programs::ProgramError>
  9605. pub fn aya::programs::sock_ops::SockOps::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9606. impl aya::programs::sock_ops::SockOps
  9607. pub fn aya::programs::sock_ops::SockOps::detach(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9608. pub fn aya::programs::sock_ops::SockOps::take_link(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<aya::programs::sock_ops::SockOpsLink, aya::programs::ProgramError>
  9609. impl aya::programs::sock_ops::SockOps
  9610. pub fn aya::programs::sock_ops::SockOps::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9611. impl aya::programs::sock_ops::SockOps
  9612. pub fn aya::programs::sock_ops::SockOps::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9613. impl aya::programs::sock_ops::SockOps
  9614. pub fn aya::programs::sock_ops::SockOps::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9615. impl aya::programs::sock_ops::SockOps
  9616. pub fn aya::programs::sock_ops::SockOps::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9617. impl aya::programs::sock_ops::SockOps
  9618. pub fn aya::programs::sock_ops::SockOps::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9619. pub fn aya::programs::sock_ops::SockOps::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9620. impl aya::programs::sock_ops::SockOps
  9621. pub fn aya::programs::sock_ops::SockOps::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9622. impl core::fmt::Debug for aya::programs::sock_ops::SockOps
  9623. pub fn aya::programs::sock_ops::SockOps::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9624. impl core::ops::drop::Drop for aya::programs::sock_ops::SockOps
  9625. pub fn aya::programs::sock_ops::SockOps::drop(&mut self)
  9626. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sock_ops::SockOps
  9627. pub type &'a aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  9628. pub fn &'a aya::programs::sock_ops::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  9629. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sock_ops::SockOps
  9630. pub type &'a mut aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  9631. pub fn &'a mut aya::programs::sock_ops::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  9632. impl core::marker::Freeze for aya::programs::sock_ops::SockOps
  9633. impl core::marker::Send for aya::programs::sock_ops::SockOps
  9634. impl core::marker::Sync for aya::programs::sock_ops::SockOps
  9635. impl core::marker::Unpin for aya::programs::sock_ops::SockOps
  9636. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOps
  9637. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOps
  9638. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOps where U: core::convert::From<T>
  9639. pub fn aya::programs::sock_ops::SockOps::into(self) -> U
  9640. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOps where U: core::convert::Into<T>
  9641. pub type aya::programs::sock_ops::SockOps::Error = core::convert::Infallible
  9642. pub fn aya::programs::sock_ops::SockOps::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9643. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOps where U: core::convert::TryFrom<T>
  9644. pub type aya::programs::sock_ops::SockOps::Error = <U as core::convert::TryFrom<T>>::Error
  9645. pub fn aya::programs::sock_ops::SockOps::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9646. impl<T> core::any::Any for aya::programs::sock_ops::SockOps where T: 'static + ?core::marker::Sized
  9647. pub fn aya::programs::sock_ops::SockOps::type_id(&self) -> core::any::TypeId
  9648. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  9649. pub fn aya::programs::sock_ops::SockOps::borrow(&self) -> &T
  9650. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  9651. pub fn aya::programs::sock_ops::SockOps::borrow_mut(&mut self) -> &mut T
  9652. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOps
  9653. pub fn aya::programs::sock_ops::SockOps::from(t: T) -> T
  9654. pub struct aya::programs::SocketFilter
  9655. impl aya::programs::socket_filter::SocketFilter
  9656. pub const aya::programs::socket_filter::SocketFilter::PROGRAM_TYPE: aya::programs::ProgramType
  9657. pub fn aya::programs::socket_filter::SocketFilter::attach<T: std::os::fd::owned::AsFd>(&mut self, socket: T) -> core::result::Result<aya::programs::socket_filter::SocketFilterLinkId, aya::programs::ProgramError>
  9658. pub fn aya::programs::socket_filter::SocketFilter::detach(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9659. pub fn aya::programs::socket_filter::SocketFilter::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9660. pub fn aya::programs::socket_filter::SocketFilter::take_link(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<aya::programs::socket_filter::SocketFilterLink, aya::programs::ProgramError>
  9661. impl aya::programs::socket_filter::SocketFilter
  9662. pub fn aya::programs::socket_filter::SocketFilter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9663. impl aya::programs::socket_filter::SocketFilter
  9664. pub fn aya::programs::socket_filter::SocketFilter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9665. impl aya::programs::socket_filter::SocketFilter
  9666. pub fn aya::programs::socket_filter::SocketFilter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9667. impl aya::programs::socket_filter::SocketFilter
  9668. pub fn aya::programs::socket_filter::SocketFilter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9669. pub fn aya::programs::socket_filter::SocketFilter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9670. impl aya::programs::socket_filter::SocketFilter
  9671. pub fn aya::programs::socket_filter::SocketFilter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9672. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilter
  9673. pub fn aya::programs::socket_filter::SocketFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9674. impl core::ops::drop::Drop for aya::programs::socket_filter::SocketFilter
  9675. pub fn aya::programs::socket_filter::SocketFilter::drop(&mut self)
  9676. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::socket_filter::SocketFilter
  9677. pub type &'a aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  9678. pub fn &'a aya::programs::socket_filter::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  9679. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::socket_filter::SocketFilter
  9680. pub type &'a mut aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  9681. pub fn &'a mut aya::programs::socket_filter::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  9682. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilter
  9683. impl core::marker::Send for aya::programs::socket_filter::SocketFilter
  9684. impl core::marker::Sync for aya::programs::socket_filter::SocketFilter
  9685. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilter
  9686. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilter
  9687. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilter
  9688. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::From<T>
  9689. pub fn aya::programs::socket_filter::SocketFilter::into(self) -> U
  9690. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::Into<T>
  9691. pub type aya::programs::socket_filter::SocketFilter::Error = core::convert::Infallible
  9692. pub fn aya::programs::socket_filter::SocketFilter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9693. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::TryFrom<T>
  9694. pub type aya::programs::socket_filter::SocketFilter::Error = <U as core::convert::TryFrom<T>>::Error
  9695. pub fn aya::programs::socket_filter::SocketFilter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9696. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilter where T: 'static + ?core::marker::Sized
  9697. pub fn aya::programs::socket_filter::SocketFilter::type_id(&self) -> core::any::TypeId
  9698. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  9699. pub fn aya::programs::socket_filter::SocketFilter::borrow(&self) -> &T
  9700. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  9701. pub fn aya::programs::socket_filter::SocketFilter::borrow_mut(&mut self) -> &mut T
  9702. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilter
  9703. pub fn aya::programs::socket_filter::SocketFilter::from(t: T) -> T
  9704. pub struct aya::programs::TracePoint
  9705. impl aya::programs::trace_point::TracePoint
  9706. pub const aya::programs::trace_point::TracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  9707. pub fn aya::programs::trace_point::TracePoint::attach(&mut self, category: &str, name: &str) -> core::result::Result<aya::programs::trace_point::TracePointLinkId, aya::programs::ProgramError>
  9708. pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9709. impl aya::programs::trace_point::TracePoint
  9710. pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9711. pub fn aya::programs::trace_point::TracePoint::take_link(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<aya::programs::trace_point::TracePointLink, aya::programs::ProgramError>
  9712. impl aya::programs::trace_point::TracePoint
  9713. pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9714. impl aya::programs::trace_point::TracePoint
  9715. pub fn aya::programs::trace_point::TracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9716. impl aya::programs::trace_point::TracePoint
  9717. pub fn aya::programs::trace_point::TracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9718. impl aya::programs::trace_point::TracePoint
  9719. pub fn aya::programs::trace_point::TracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9720. impl aya::programs::trace_point::TracePoint
  9721. pub fn aya::programs::trace_point::TracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9722. pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9723. impl aya::programs::trace_point::TracePoint
  9724. pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9725. impl core::fmt::Debug for aya::programs::trace_point::TracePoint
  9726. pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9727. impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint
  9728. pub fn aya::programs::trace_point::TracePoint::drop(&mut self)
  9729. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  9730. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  9731. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  9732. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  9733. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  9734. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  9735. impl core::marker::Freeze for aya::programs::trace_point::TracePoint
  9736. impl core::marker::Send for aya::programs::trace_point::TracePoint
  9737. impl core::marker::Sync for aya::programs::trace_point::TracePoint
  9738. impl core::marker::Unpin for aya::programs::trace_point::TracePoint
  9739. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint
  9740. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint
  9741. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePoint where U: core::convert::From<T>
  9742. pub fn aya::programs::trace_point::TracePoint::into(self) -> U
  9743. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePoint where U: core::convert::Into<T>
  9744. pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible
  9745. pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9746. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom<T>
  9747. pub type aya::programs::trace_point::TracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  9748. pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9749. impl<T> core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + ?core::marker::Sized
  9750. pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId
  9751. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  9752. pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T
  9753. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  9754. pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T
  9755. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePoint
  9756. pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T
  9757. pub struct aya::programs::UProbe
  9758. impl aya::programs::uprobe::UProbe
  9759. pub const aya::programs::uprobe::UProbe::PROGRAM_TYPE: aya::programs::ProgramType
  9760. pub fn aya::programs::uprobe::UProbe::attach<'loc, T: core::convert::AsRef<std::path::Path>, Loc: core::convert::Into<aya::programs::uprobe::UProbeAttachLocation<'loc>>>(&mut self, location: Loc, target: T, pid: core::option::Option<libc::unix::pid_t>, cookie: core::option::Option<u64>) -> core::result::Result<aya::programs::uprobe::UProbeLinkId, aya::programs::ProgramError>
  9761. pub fn aya::programs::uprobe::UProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9762. pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind
  9763. pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9764. impl aya::programs::uprobe::UProbe
  9765. pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9766. pub fn aya::programs::uprobe::UProbe::take_link(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<aya::programs::uprobe::UProbeLink, aya::programs::ProgramError>
  9767. impl aya::programs::uprobe::UProbe
  9768. pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9769. impl aya::programs::uprobe::UProbe
  9770. pub unsafe fn aya::programs::uprobe::UProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9771. impl aya::programs::uprobe::UProbe
  9772. pub fn aya::programs::uprobe::UProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9773. impl aya::programs::uprobe::UProbe
  9774. pub fn aya::programs::uprobe::UProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9775. pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9776. impl aya::programs::uprobe::UProbe
  9777. pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9778. impl core::fmt::Debug for aya::programs::uprobe::UProbe
  9779. pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9780. impl core::ops::drop::Drop for aya::programs::uprobe::UProbe
  9781. pub fn aya::programs::uprobe::UProbe::drop(&mut self)
  9782. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  9783. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  9784. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  9785. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  9786. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  9787. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  9788. impl core::marker::Freeze for aya::programs::uprobe::UProbe
  9789. impl core::marker::Send for aya::programs::uprobe::UProbe
  9790. impl core::marker::Sync for aya::programs::uprobe::UProbe
  9791. impl core::marker::Unpin for aya::programs::uprobe::UProbe
  9792. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe
  9793. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe
  9794. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbe where U: core::convert::From<T>
  9795. pub fn aya::programs::uprobe::UProbe::into(self) -> U
  9796. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbe where U: core::convert::Into<T>
  9797. pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible
  9798. pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9799. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbe where U: core::convert::TryFrom<T>
  9800. pub type aya::programs::uprobe::UProbe::Error = <U as core::convert::TryFrom<T>>::Error
  9801. pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9802. impl<T> core::any::Any for aya::programs::uprobe::UProbe where T: 'static + ?core::marker::Sized
  9803. pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId
  9804. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  9805. pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T
  9806. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  9807. pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T
  9808. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbe
  9809. pub fn aya::programs::uprobe::UProbe::from(t: T) -> T
  9810. pub struct aya::programs::Xdp
  9811. impl aya::programs::xdp::Xdp
  9812. pub const aya::programs::xdp::Xdp::PROGRAM_TYPE: aya::programs::ProgramType
  9813. pub fn aya::programs::xdp::Xdp::attach(&mut self, interface: &str, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  9814. pub fn aya::programs::xdp::Xdp::attach_to_if_index(&mut self, if_index: u32, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  9815. pub fn aya::programs::xdp::Xdp::attach_to_link(&mut self, link: aya::programs::xdp::XdpLink) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  9816. pub fn aya::programs::xdp::Xdp::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  9817. pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9818. impl aya::programs::xdp::Xdp
  9819. pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9820. pub fn aya::programs::xdp::Xdp::take_link(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<aya::programs::xdp::XdpLink, aya::programs::ProgramError>
  9821. impl aya::programs::xdp::Xdp
  9822. pub fn aya::programs::xdp::Xdp::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9823. impl aya::programs::xdp::Xdp
  9824. pub fn aya::programs::xdp::Xdp::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  9825. impl aya::programs::xdp::Xdp
  9826. pub fn aya::programs::xdp::Xdp::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9827. impl aya::programs::xdp::Xdp
  9828. pub fn aya::programs::xdp::Xdp::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9829. pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9830. impl aya::programs::xdp::Xdp
  9831. pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9832. impl core::fmt::Debug for aya::programs::xdp::Xdp
  9833. pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9834. impl core::ops::drop::Drop for aya::programs::xdp::Xdp
  9835. pub fn aya::programs::xdp::Xdp::drop(&mut self)
  9836. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  9837. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  9838. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  9839. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  9840. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  9841. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  9842. impl core::marker::Freeze for aya::programs::xdp::Xdp
  9843. impl core::marker::Send for aya::programs::xdp::Xdp
  9844. impl core::marker::Sync for aya::programs::xdp::Xdp
  9845. impl core::marker::Unpin for aya::programs::xdp::Xdp
  9846. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp
  9847. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp
  9848. impl<T, U> core::convert::Into<U> for aya::programs::xdp::Xdp where U: core::convert::From<T>
  9849. pub fn aya::programs::xdp::Xdp::into(self) -> U
  9850. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::Xdp where U: core::convert::Into<T>
  9851. pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible
  9852. pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9853. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::Xdp where U: core::convert::TryFrom<T>
  9854. pub type aya::programs::xdp::Xdp::Error = <U as core::convert::TryFrom<T>>::Error
  9855. pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9856. impl<T> core::any::Any for aya::programs::xdp::Xdp where T: 'static + ?core::marker::Sized
  9857. pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId
  9858. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  9859. pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T
  9860. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  9861. pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T
  9862. impl<T> core::convert::From<T> for aya::programs::xdp::Xdp
  9863. pub fn aya::programs::xdp::Xdp::from(t: T) -> T
  9864. pub struct aya::programs::XdpFlags(_)
  9865. impl aya::programs::xdp::XdpFlags
  9866. pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self
  9867. pub const aya::programs::xdp::XdpFlags::HW_MODE: Self
  9868. pub const aya::programs::xdp::XdpFlags::REPLACE: Self
  9869. pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self
  9870. pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self
  9871. impl aya::programs::xdp::XdpFlags
  9872. pub const fn aya::programs::xdp::XdpFlags::all() -> Self
  9873. pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  9874. pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self
  9875. pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool
  9876. pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self
  9877. pub const fn aya::programs::xdp::XdpFlags::empty() -> Self
  9878. pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option<Self>
  9879. pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self
  9880. pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self
  9881. pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option<Self>
  9882. pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self)
  9883. pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self
  9884. pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool
  9885. pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool
  9886. pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool
  9887. pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self)
  9888. pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool)
  9889. pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self
  9890. pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self)
  9891. pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self
  9892. impl aya::programs::xdp::XdpFlags
  9893. pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  9894. pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames<aya::programs::xdp::XdpFlags>
  9895. impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags
  9896. pub type aya::programs::xdp::XdpFlags::Bits = u32
  9897. pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag<aya::programs::xdp::XdpFlags>]
  9898. pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  9899. pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags
  9900. impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags
  9901. pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags
  9902. pub type aya::programs::xdp::XdpFlags::Primitive = u32
  9903. impl core::clone::Clone for aya::programs::xdp::XdpFlags
  9904. pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags
  9905. impl core::default::Default for aya::programs::xdp::XdpFlags
  9906. pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags
  9907. impl core::fmt::Binary for aya::programs::xdp::XdpFlags
  9908. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9909. impl core::fmt::Debug for aya::programs::xdp::XdpFlags
  9910. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9911. impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags
  9912. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9913. impl core::fmt::Octal for aya::programs::xdp::XdpFlags
  9914. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9915. impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags
  9916. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9917. impl core::iter::traits::collect::Extend<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  9918. pub fn aya::programs::xdp::XdpFlags::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  9919. impl core::iter::traits::collect::FromIterator<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  9920. pub fn aya::programs::xdp::XdpFlags::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  9921. impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags
  9922. pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  9923. pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags
  9924. pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter
  9925. impl core::marker::Copy for aya::programs::xdp::XdpFlags
  9926. impl core::ops::arith::Sub for aya::programs::xdp::XdpFlags
  9927. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9928. pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self
  9929. impl core::ops::arith::SubAssign for aya::programs::xdp::XdpFlags
  9930. pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self)
  9931. impl core::ops::bit::BitAnd for aya::programs::xdp::XdpFlags
  9932. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9933. pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self
  9934. impl core::ops::bit::BitAndAssign for aya::programs::xdp::XdpFlags
  9935. pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self)
  9936. impl core::ops::bit::BitOr for aya::programs::xdp::XdpFlags
  9937. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9938. pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self
  9939. impl core::ops::bit::BitOrAssign for aya::programs::xdp::XdpFlags
  9940. pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self)
  9941. impl core::ops::bit::BitXor for aya::programs::xdp::XdpFlags
  9942. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9943. pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self
  9944. impl core::ops::bit::BitXorAssign for aya::programs::xdp::XdpFlags
  9945. pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self)
  9946. impl core::ops::bit::Not for aya::programs::xdp::XdpFlags
  9947. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9948. pub fn aya::programs::xdp::XdpFlags::not(self) -> Self
  9949. impl core::marker::Freeze for aya::programs::xdp::XdpFlags
  9950. impl core::marker::Send for aya::programs::xdp::XdpFlags
  9951. impl core::marker::Sync for aya::programs::xdp::XdpFlags
  9952. impl core::marker::Unpin for aya::programs::xdp::XdpFlags
  9953. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags
  9954. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags
  9955. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpFlags where U: core::convert::From<T>
  9956. pub fn aya::programs::xdp::XdpFlags::into(self) -> U
  9957. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpFlags where U: core::convert::Into<T>
  9958. pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible
  9959. pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9960. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom<T>
  9961. pub type aya::programs::xdp::XdpFlags::Error = <U as core::convert::TryFrom<T>>::Error
  9962. pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9963. impl<T> alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  9964. pub type aya::programs::xdp::XdpFlags::Owned = T
  9965. pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T)
  9966. pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T
  9967. impl<T> core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + ?core::marker::Sized
  9968. pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId
  9969. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  9970. pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T
  9971. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  9972. pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T
  9973. impl<T> core::clone::CloneToUninit for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  9974. pub unsafe fn aya::programs::xdp::XdpFlags::clone_to_uninit(&self, dest: *mut u8)
  9975. impl<T> core::convert::From<T> for aya::programs::xdp::XdpFlags
  9976. pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T
  9977. pub trait aya::programs::Link: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + 'static
  9978. pub type aya::programs::Link::Id: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + equivalent::Equivalent<Self>
  9979. pub fn aya::programs::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9980. pub fn aya::programs::Link::id(&self) -> Self::Id
  9981. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  9982. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  9983. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9984. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  9985. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  9986. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  9987. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9988. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  9989. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  9990. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  9991. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9992. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  9993. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  9994. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  9995. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9996. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  9997. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  9998. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  9999. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10000. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  10001. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  10002. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  10003. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10004. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  10005. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  10006. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  10007. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10008. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  10009. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  10010. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  10011. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10012. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  10013. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  10014. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  10015. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10016. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  10017. impl aya::programs::links::Link for aya::programs::flow_dissector::FlowDissectorLink
  10018. pub type aya::programs::flow_dissector::FlowDissectorLink::Id = aya::programs::flow_dissector::FlowDissectorLinkId
  10019. pub fn aya::programs::flow_dissector::FlowDissectorLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10020. pub fn aya::programs::flow_dissector::FlowDissectorLink::id(&self) -> Self::Id
  10021. impl aya::programs::links::Link for aya::programs::iter::IterLink
  10022. pub type aya::programs::iter::IterLink::Id = aya::programs::iter::IterLinkId
  10023. pub fn aya::programs::iter::IterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10024. pub fn aya::programs::iter::IterLink::id(&self) -> Self::Id
  10025. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  10026. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  10027. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10028. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  10029. impl aya::programs::links::Link for aya::programs::links::FdLink
  10030. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  10031. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10032. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  10033. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  10034. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  10035. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10036. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  10037. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  10038. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  10039. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10040. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  10041. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  10042. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  10043. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10044. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  10045. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  10046. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  10047. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10048. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  10049. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  10050. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  10051. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10052. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  10053. impl aya::programs::links::Link for aya::programs::raw_trace_point::RawTracePointLink
  10054. pub type aya::programs::raw_trace_point::RawTracePointLink::Id = aya::programs::raw_trace_point::RawTracePointLinkId
  10055. pub fn aya::programs::raw_trace_point::RawTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10056. pub fn aya::programs::raw_trace_point::RawTracePointLink::id(&self) -> Self::Id
  10057. impl aya::programs::links::Link for aya::programs::sk_lookup::SkLookupLink
  10058. pub type aya::programs::sk_lookup::SkLookupLink::Id = aya::programs::sk_lookup::SkLookupLinkId
  10059. pub fn aya::programs::sk_lookup::SkLookupLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10060. pub fn aya::programs::sk_lookup::SkLookupLink::id(&self) -> Self::Id
  10061. impl aya::programs::links::Link for aya::programs::sk_msg::SkMsgLink
  10062. pub type aya::programs::sk_msg::SkMsgLink::Id = aya::programs::sk_msg::SkMsgLinkId
  10063. pub fn aya::programs::sk_msg::SkMsgLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10064. pub fn aya::programs::sk_msg::SkMsgLink::id(&self) -> Self::Id
  10065. impl aya::programs::links::Link for aya::programs::sk_skb::SkSkbLink
  10066. pub type aya::programs::sk_skb::SkSkbLink::Id = aya::programs::sk_skb::SkSkbLinkId
  10067. pub fn aya::programs::sk_skb::SkSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10068. pub fn aya::programs::sk_skb::SkSkbLink::id(&self) -> Self::Id
  10069. impl aya::programs::links::Link for aya::programs::sock_ops::SockOpsLink
  10070. pub type aya::programs::sock_ops::SockOpsLink::Id = aya::programs::sock_ops::SockOpsLinkId
  10071. pub fn aya::programs::sock_ops::SockOpsLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10072. pub fn aya::programs::sock_ops::SockOpsLink::id(&self) -> Self::Id
  10073. impl aya::programs::links::Link for aya::programs::socket_filter::SocketFilterLink
  10074. pub type aya::programs::socket_filter::SocketFilterLink::Id = aya::programs::socket_filter::SocketFilterLinkId
  10075. pub fn aya::programs::socket_filter::SocketFilterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10076. pub fn aya::programs::socket_filter::SocketFilterLink::id(&self) -> Self::Id
  10077. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  10078. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  10079. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10080. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  10081. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  10082. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  10083. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10084. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  10085. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  10086. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  10087. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10088. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  10089. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  10090. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  10091. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10092. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  10093. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  10094. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  10095. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10096. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  10097. pub trait aya::programs::MultiProgLink
  10098. pub fn aya::programs::MultiProgLink::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::links::LinkError>
  10099. impl aya::programs::MultiProgLink for aya::programs::tc::SchedClassifierLink
  10100. pub fn aya::programs::tc::SchedClassifierLink::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::links::LinkError>
  10101. pub trait aya::programs::MultiProgram
  10102. pub fn aya::programs::MultiProgram::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  10103. impl aya::programs::MultiProgram for aya::programs::tc::SchedClassifier
  10104. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  10105. pub fn aya::programs::loaded_links() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::programs::links::LinkInfo, aya::programs::links::LinkError>>
  10106. pub fn aya::programs::loaded_programs() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>>
  10107. pub mod aya::sys
  10108. #[non_exhaustive] pub enum aya::sys::Stats
  10109. pub aya::sys::Stats::RunTime
  10110. impl core::clone::Clone for aya::sys::Stats
  10111. pub fn aya::sys::Stats::clone(&self) -> aya::sys::Stats
  10112. impl core::convert::From<aya::sys::Stats> for aya_obj::generated::linux_bindings_x86_64::bpf_stats_type
  10113. pub fn aya_obj::generated::linux_bindings_x86_64::bpf_stats_type::from(value: aya::sys::Stats) -> Self
  10114. impl core::fmt::Debug for aya::sys::Stats
  10115. pub fn aya::sys::Stats::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10116. impl core::marker::Copy for aya::sys::Stats
  10117. impl core::marker::Freeze for aya::sys::Stats
  10118. impl core::marker::Send for aya::sys::Stats
  10119. impl core::marker::Sync for aya::sys::Stats
  10120. impl core::marker::Unpin for aya::sys::Stats
  10121. impl core::panic::unwind_safe::RefUnwindSafe for aya::sys::Stats
  10122. impl core::panic::unwind_safe::UnwindSafe for aya::sys::Stats
  10123. impl<T, U> core::convert::Into<U> for aya::sys::Stats where U: core::convert::From<T>
  10124. pub fn aya::sys::Stats::into(self) -> U
  10125. impl<T, U> core::convert::TryFrom<U> for aya::sys::Stats where U: core::convert::Into<T>
  10126. pub type aya::sys::Stats::Error = core::convert::Infallible
  10127. pub fn aya::sys::Stats::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10128. impl<T, U> core::convert::TryInto<U> for aya::sys::Stats where U: core::convert::TryFrom<T>
  10129. pub type aya::sys::Stats::Error = <U as core::convert::TryFrom<T>>::Error
  10130. pub fn aya::sys::Stats::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10131. impl<T> alloc::borrow::ToOwned for aya::sys::Stats where T: core::clone::Clone
  10132. pub type aya::sys::Stats::Owned = T
  10133. pub fn aya::sys::Stats::clone_into(&self, target: &mut T)
  10134. pub fn aya::sys::Stats::to_owned(&self) -> T
  10135. impl<T> core::any::Any for aya::sys::Stats where T: 'static + ?core::marker::Sized
  10136. pub fn aya::sys::Stats::type_id(&self) -> core::any::TypeId
  10137. impl<T> core::borrow::Borrow<T> for aya::sys::Stats where T: ?core::marker::Sized
  10138. pub fn aya::sys::Stats::borrow(&self) -> &T
  10139. impl<T> core::borrow::BorrowMut<T> for aya::sys::Stats where T: ?core::marker::Sized
  10140. pub fn aya::sys::Stats::borrow_mut(&mut self) -> &mut T
  10141. impl<T> core::clone::CloneToUninit for aya::sys::Stats where T: core::clone::Clone
  10142. pub unsafe fn aya::sys::Stats::clone_to_uninit(&self, dest: *mut u8)
  10143. impl<T> core::convert::From<T> for aya::sys::Stats
  10144. pub fn aya::sys::Stats::from(t: T) -> T
  10145. pub struct aya::sys::SyscallError
  10146. pub aya::sys::SyscallError::call: &'static str
  10147. pub aya::sys::SyscallError::io_error: std::io::error::Error
  10148. impl core::convert::From<aya::sys::SyscallError> for aya::maps::MapError
  10149. pub fn aya::maps::MapError::from(source: aya::sys::SyscallError) -> Self
  10150. impl core::convert::From<aya::sys::SyscallError> for aya::pin::PinError
  10151. pub fn aya::pin::PinError::from(source: aya::sys::SyscallError) -> Self
  10152. impl core::convert::From<aya::sys::SyscallError> for aya::programs::ProgramError
  10153. pub fn aya::programs::ProgramError::from(source: aya::sys::SyscallError) -> Self
  10154. impl core::convert::From<aya::sys::SyscallError> for aya::programs::links::LinkError
  10155. pub fn aya::programs::links::LinkError::from(source: aya::sys::SyscallError) -> Self
  10156. impl core::error::Error for aya::sys::SyscallError
  10157. pub fn aya::sys::SyscallError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  10158. impl core::fmt::Debug for aya::sys::SyscallError
  10159. pub fn aya::sys::SyscallError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10160. impl core::fmt::Display for aya::sys::SyscallError
  10161. pub fn aya::sys::SyscallError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10162. impl core::marker::Freeze for aya::sys::SyscallError
  10163. impl core::marker::Send for aya::sys::SyscallError
  10164. impl core::marker::Sync for aya::sys::SyscallError
  10165. impl core::marker::Unpin for aya::sys::SyscallError
  10166. impl !core::panic::unwind_safe::RefUnwindSafe for aya::sys::SyscallError
  10167. impl !core::panic::unwind_safe::UnwindSafe for aya::sys::SyscallError
  10168. impl<T, U> core::convert::Into<U> for aya::sys::SyscallError where U: core::convert::From<T>
  10169. pub fn aya::sys::SyscallError::into(self) -> U
  10170. impl<T, U> core::convert::TryFrom<U> for aya::sys::SyscallError where U: core::convert::Into<T>
  10171. pub type aya::sys::SyscallError::Error = core::convert::Infallible
  10172. pub fn aya::sys::SyscallError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10173. impl<T, U> core::convert::TryInto<U> for aya::sys::SyscallError where U: core::convert::TryFrom<T>
  10174. pub type aya::sys::SyscallError::Error = <U as core::convert::TryFrom<T>>::Error
  10175. pub fn aya::sys::SyscallError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10176. impl<T> alloc::string::ToString for aya::sys::SyscallError where T: core::fmt::Display + ?core::marker::Sized
  10177. pub fn aya::sys::SyscallError::to_string(&self) -> alloc::string::String
  10178. impl<T> core::any::Any for aya::sys::SyscallError where T: 'static + ?core::marker::Sized
  10179. pub fn aya::sys::SyscallError::type_id(&self) -> core::any::TypeId
  10180. impl<T> core::borrow::Borrow<T> for aya::sys::SyscallError where T: ?core::marker::Sized
  10181. pub fn aya::sys::SyscallError::borrow(&self) -> &T
  10182. impl<T> core::borrow::BorrowMut<T> for aya::sys::SyscallError where T: ?core::marker::Sized
  10183. pub fn aya::sys::SyscallError::borrow_mut(&mut self) -> &mut T
  10184. impl<T> core::convert::From<T> for aya::sys::SyscallError
  10185. pub fn aya::sys::SyscallError::from(t: T) -> T
  10186. pub fn aya::sys::enable_stats(stats_type: aya::sys::Stats) -> core::result::Result<std::os::fd::owned::OwnedFd, aya::sys::SyscallError>
  10187. pub fn aya::sys::is_map_supported(map_type: aya::maps::MapType) -> core::result::Result<bool, aya::sys::SyscallError>
  10188. pub fn aya::sys::is_program_supported(program_type: aya::programs::ProgramType) -> core::result::Result<bool, aya::programs::ProgramError>
  10189. pub mod aya::util
  10190. pub struct aya::util::KernelVersion
  10191. impl aya::util::KernelVersion
  10192. pub fn aya::util::KernelVersion::code(self) -> u32
  10193. pub fn aya::util::KernelVersion::current() -> core::result::Result<Self, impl core::error::Error>
  10194. pub fn aya::util::KernelVersion::new(major: u8, minor: u8, patch: u16) -> Self
  10195. impl core::clone::Clone for aya::util::KernelVersion
  10196. pub fn aya::util::KernelVersion::clone(&self) -> aya::util::KernelVersion
  10197. impl core::cmp::Eq for aya::util::KernelVersion
  10198. impl core::cmp::PartialEq for aya::util::KernelVersion
  10199. pub fn aya::util::KernelVersion::eq(&self, other: &aya::util::KernelVersion) -> bool
  10200. impl core::cmp::PartialOrd for aya::util::KernelVersion
  10201. pub fn aya::util::KernelVersion::partial_cmp(&self, other: &aya::util::KernelVersion) -> core::option::Option<core::cmp::Ordering>
  10202. impl core::fmt::Debug for aya::util::KernelVersion
  10203. pub fn aya::util::KernelVersion::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10204. impl core::fmt::Display for aya::util::KernelVersion
  10205. pub fn aya::util::KernelVersion::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10206. impl core::marker::Copy for aya::util::KernelVersion
  10207. impl core::marker::StructuralPartialEq for aya::util::KernelVersion
  10208. impl core::marker::Freeze for aya::util::KernelVersion
  10209. impl core::marker::Send for aya::util::KernelVersion
  10210. impl core::marker::Sync for aya::util::KernelVersion
  10211. impl core::marker::Unpin for aya::util::KernelVersion
  10212. impl core::panic::unwind_safe::RefUnwindSafe for aya::util::KernelVersion
  10213. impl core::panic::unwind_safe::UnwindSafe for aya::util::KernelVersion
  10214. impl<Q, K> equivalent::Equivalent<K> for aya::util::KernelVersion where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  10215. pub fn aya::util::KernelVersion::equivalent(&self, key: &K) -> bool
  10216. impl<T, U> core::convert::Into<U> for aya::util::KernelVersion where U: core::convert::From<T>
  10217. pub fn aya::util::KernelVersion::into(self) -> U
  10218. impl<T, U> core::convert::TryFrom<U> for aya::util::KernelVersion where U: core::convert::Into<T>
  10219. pub type aya::util::KernelVersion::Error = core::convert::Infallible
  10220. pub fn aya::util::KernelVersion::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10221. impl<T, U> core::convert::TryInto<U> for aya::util::KernelVersion where U: core::convert::TryFrom<T>
  10222. pub type aya::util::KernelVersion::Error = <U as core::convert::TryFrom<T>>::Error
  10223. pub fn aya::util::KernelVersion::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10224. impl<T> alloc::borrow::ToOwned for aya::util::KernelVersion where T: core::clone::Clone
  10225. pub type aya::util::KernelVersion::Owned = T
  10226. pub fn aya::util::KernelVersion::clone_into(&self, target: &mut T)
  10227. pub fn aya::util::KernelVersion::to_owned(&self) -> T
  10228. impl<T> alloc::string::ToString for aya::util::KernelVersion where T: core::fmt::Display + ?core::marker::Sized
  10229. pub fn aya::util::KernelVersion::to_string(&self) -> alloc::string::String
  10230. impl<T> core::any::Any for aya::util::KernelVersion where T: 'static + ?core::marker::Sized
  10231. pub fn aya::util::KernelVersion::type_id(&self) -> core::any::TypeId
  10232. impl<T> core::borrow::Borrow<T> for aya::util::KernelVersion where T: ?core::marker::Sized
  10233. pub fn aya::util::KernelVersion::borrow(&self) -> &T
  10234. impl<T> core::borrow::BorrowMut<T> for aya::util::KernelVersion where T: ?core::marker::Sized
  10235. pub fn aya::util::KernelVersion::borrow_mut(&mut self) -> &mut T
  10236. impl<T> core::clone::CloneToUninit for aya::util::KernelVersion where T: core::clone::Clone
  10237. pub unsafe fn aya::util::KernelVersion::clone_to_uninit(&self, dest: *mut u8)
  10238. impl<T> core::convert::From<T> for aya::util::KernelVersion
  10239. pub fn aya::util::KernelVersion::from(t: T) -> T
  10240. pub fn aya::util::kernel_symbols() -> core::result::Result<alloc::collections::btree::map::BTreeMap<u64, alloc::string::String>, std::io::error::Error>
  10241. pub fn aya::util::nr_cpus() -> core::result::Result<usize, (&'static str, std::io::error::Error)>
  10242. pub fn aya::util::online_cpus() -> core::result::Result<alloc::vec::Vec<u32>, (&'static str, std::io::error::Error)>
  10243. pub fn aya::util::syscall_prefix() -> core::result::Result<&'static str, std::io::error::Error>
  10244. pub macro aya::include_bytes_aligned!
  10245. pub enum aya::EbpfError
  10246. pub aya::EbpfError::BtfError(aya_obj::btf::btf::BtfError)
  10247. pub aya::EbpfError::BtfRelocationError(aya_obj::btf::relocation::BtfRelocationError)
  10248. pub aya::EbpfError::FileError
  10249. pub aya::EbpfError::FileError::error: std::io::error::Error
  10250. pub aya::EbpfError::FileError::path: std::path::PathBuf
  10251. pub aya::EbpfError::MapError(aya::maps::MapError)
  10252. pub aya::EbpfError::NoBTF
  10253. pub aya::EbpfError::ParseError(aya_obj::obj::ParseError)
  10254. pub aya::EbpfError::ProgramError(aya::programs::ProgramError)
  10255. pub aya::EbpfError::RelocationError(aya_obj::relocation::EbpfRelocationError)
  10256. pub aya::EbpfError::UnexpectedPinningType
  10257. pub aya::EbpfError::UnexpectedPinningType::name: u32
  10258. impl core::convert::From<aya::maps::MapError> for aya::EbpfError
  10259. pub fn aya::EbpfError::from(source: aya::maps::MapError) -> Self
  10260. impl core::convert::From<aya::programs::ProgramError> for aya::EbpfError
  10261. pub fn aya::EbpfError::from(source: aya::programs::ProgramError) -> Self
  10262. impl core::convert::From<aya_obj::btf::btf::BtfError> for aya::EbpfError
  10263. pub fn aya::EbpfError::from(source: aya_obj::btf::btf::BtfError) -> Self
  10264. impl core::convert::From<aya_obj::btf::relocation::BtfRelocationError> for aya::EbpfError
  10265. pub fn aya::EbpfError::from(source: aya_obj::btf::relocation::BtfRelocationError) -> Self
  10266. impl core::convert::From<aya_obj::obj::ParseError> for aya::EbpfError
  10267. pub fn aya::EbpfError::from(source: aya_obj::obj::ParseError) -> Self
  10268. impl core::convert::From<aya_obj::relocation::EbpfRelocationError> for aya::EbpfError
  10269. pub fn aya::EbpfError::from(source: aya_obj::relocation::EbpfRelocationError) -> Self
  10270. impl core::error::Error for aya::EbpfError
  10271. pub fn aya::EbpfError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  10272. impl core::fmt::Debug for aya::EbpfError
  10273. pub fn aya::EbpfError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10274. impl core::fmt::Display for aya::EbpfError
  10275. pub fn aya::EbpfError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10276. impl core::marker::Freeze for aya::EbpfError
  10277. impl core::marker::Send for aya::EbpfError
  10278. impl core::marker::Sync for aya::EbpfError
  10279. impl core::marker::Unpin for aya::EbpfError
  10280. impl !core::panic::unwind_safe::RefUnwindSafe for aya::EbpfError
  10281. impl !core::panic::unwind_safe::UnwindSafe for aya::EbpfError
  10282. impl<T, U> core::convert::Into<U> for aya::EbpfError where U: core::convert::From<T>
  10283. pub fn aya::EbpfError::into(self) -> U
  10284. impl<T, U> core::convert::TryFrom<U> for aya::EbpfError where U: core::convert::Into<T>
  10285. pub type aya::EbpfError::Error = core::convert::Infallible
  10286. pub fn aya::EbpfError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10287. impl<T, U> core::convert::TryInto<U> for aya::EbpfError where U: core::convert::TryFrom<T>
  10288. pub type aya::EbpfError::Error = <U as core::convert::TryFrom<T>>::Error
  10289. pub fn aya::EbpfError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10290. impl<T> alloc::string::ToString for aya::EbpfError where T: core::fmt::Display + ?core::marker::Sized
  10291. pub fn aya::EbpfError::to_string(&self) -> alloc::string::String
  10292. impl<T> core::any::Any for aya::EbpfError where T: 'static + ?core::marker::Sized
  10293. pub fn aya::EbpfError::type_id(&self) -> core::any::TypeId
  10294. impl<T> core::borrow::Borrow<T> for aya::EbpfError where T: ?core::marker::Sized
  10295. pub fn aya::EbpfError::borrow(&self) -> &T
  10296. impl<T> core::borrow::BorrowMut<T> for aya::EbpfError where T: ?core::marker::Sized
  10297. pub fn aya::EbpfError::borrow_mut(&mut self) -> &mut T
  10298. impl<T> core::convert::From<T> for aya::EbpfError
  10299. pub fn aya::EbpfError::from(t: T) -> T
  10300. pub struct aya::Ebpf
  10301. impl aya::Ebpf
  10302. pub fn aya::Ebpf::load(data: &[u8]) -> core::result::Result<Self, aya::EbpfError>
  10303. pub fn aya::Ebpf::load_file<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::EbpfError>
  10304. pub fn aya::Ebpf::map(&self, name: &str) -> core::option::Option<&aya::maps::Map>
  10305. pub fn aya::Ebpf::map_mut(&mut self, name: &str) -> core::option::Option<&mut aya::maps::Map>
  10306. pub fn aya::Ebpf::maps(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &aya::maps::Map)>
  10307. pub fn aya::Ebpf::maps_mut(&mut self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &mut aya::maps::Map)>
  10308. pub fn aya::Ebpf::program(&self, name: &str) -> core::option::Option<&aya::programs::Program>
  10309. pub fn aya::Ebpf::program_mut(&mut self, name: &str) -> core::option::Option<&mut aya::programs::Program>
  10310. pub fn aya::Ebpf::programs(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &aya::programs::Program)>
  10311. pub fn aya::Ebpf::programs_mut(&mut self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &mut aya::programs::Program)>
  10312. pub fn aya::Ebpf::take_map(&mut self, name: &str) -> core::option::Option<aya::maps::Map>
  10313. impl core::fmt::Debug for aya::Ebpf
  10314. pub fn aya::Ebpf::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10315. impl core::marker::Freeze for aya::Ebpf
  10316. impl core::marker::Send for aya::Ebpf
  10317. impl core::marker::Sync for aya::Ebpf
  10318. impl core::marker::Unpin for aya::Ebpf
  10319. impl core::panic::unwind_safe::RefUnwindSafe for aya::Ebpf
  10320. impl core::panic::unwind_safe::UnwindSafe for aya::Ebpf
  10321. impl<T, U> core::convert::Into<U> for aya::Ebpf where U: core::convert::From<T>
  10322. pub fn aya::Ebpf::into(self) -> U
  10323. impl<T, U> core::convert::TryFrom<U> for aya::Ebpf where U: core::convert::Into<T>
  10324. pub type aya::Ebpf::Error = core::convert::Infallible
  10325. pub fn aya::Ebpf::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10326. impl<T, U> core::convert::TryInto<U> for aya::Ebpf where U: core::convert::TryFrom<T>
  10327. pub type aya::Ebpf::Error = <U as core::convert::TryFrom<T>>::Error
  10328. pub fn aya::Ebpf::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10329. impl<T> core::any::Any for aya::Ebpf where T: 'static + ?core::marker::Sized
  10330. pub fn aya::Ebpf::type_id(&self) -> core::any::TypeId
  10331. impl<T> core::borrow::Borrow<T> for aya::Ebpf where T: ?core::marker::Sized
  10332. pub fn aya::Ebpf::borrow(&self) -> &T
  10333. impl<T> core::borrow::BorrowMut<T> for aya::Ebpf where T: ?core::marker::Sized
  10334. pub fn aya::Ebpf::borrow_mut(&mut self) -> &mut T
  10335. impl<T> core::convert::From<T> for aya::Ebpf
  10336. pub fn aya::Ebpf::from(t: T) -> T
  10337. pub struct aya::EbpfLoader<'a>
  10338. impl<'a> aya::EbpfLoader<'a>
  10339. pub fn aya::EbpfLoader<'a>::allow_unsupported_maps(&mut self) -> &mut Self
  10340. pub fn aya::EbpfLoader<'a>::btf(&mut self, btf: core::option::Option<&'a aya_obj::btf::btf::Btf>) -> &mut Self
  10341. pub fn aya::EbpfLoader<'a>::extension(&mut self, name: &'a str) -> &mut Self
  10342. pub fn aya::EbpfLoader<'a>::load(&mut self, data: &[u8]) -> core::result::Result<aya::Ebpf, aya::EbpfError>
  10343. pub fn aya::EbpfLoader<'a>::load_file<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<aya::Ebpf, aya::EbpfError>
  10344. pub fn aya::EbpfLoader<'a>::map_pin_path<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> &mut Self
  10345. pub fn aya::EbpfLoader<'a>::new() -> Self
  10346. pub fn aya::EbpfLoader<'a>::set_global<T: core::convert::Into<aya::GlobalData<'a>>>(&mut self, name: &'a str, value: T, must_exist: bool) -> &mut Self
  10347. pub fn aya::EbpfLoader<'a>::set_max_entries(&mut self, name: &'a str, size: u32) -> &mut Self
  10348. pub fn aya::EbpfLoader<'a>::verifier_log_level(&mut self, level: aya::VerifierLogLevel) -> &mut Self
  10349. impl core::default::Default for aya::EbpfLoader<'_>
  10350. pub fn aya::EbpfLoader<'_>::default() -> Self
  10351. impl<'a> core::fmt::Debug for aya::EbpfLoader<'a>
  10352. pub fn aya::EbpfLoader<'a>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10353. impl<'a> core::marker::Freeze for aya::EbpfLoader<'a>
  10354. impl<'a> core::marker::Send for aya::EbpfLoader<'a>
  10355. impl<'a> core::marker::Sync for aya::EbpfLoader<'a>
  10356. impl<'a> core::marker::Unpin for aya::EbpfLoader<'a>
  10357. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::EbpfLoader<'a>
  10358. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::EbpfLoader<'a>
  10359. impl<T, U> core::convert::Into<U> for aya::EbpfLoader<'a> where U: core::convert::From<T>
  10360. pub fn aya::EbpfLoader<'a>::into(self) -> U
  10361. impl<T, U> core::convert::TryFrom<U> for aya::EbpfLoader<'a> where U: core::convert::Into<T>
  10362. pub type aya::EbpfLoader<'a>::Error = core::convert::Infallible
  10363. pub fn aya::EbpfLoader<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10364. impl<T, U> core::convert::TryInto<U> for aya::EbpfLoader<'a> where U: core::convert::TryFrom<T>
  10365. pub type aya::EbpfLoader<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  10366. pub fn aya::EbpfLoader<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10367. impl<T> core::any::Any for aya::EbpfLoader<'a> where T: 'static + ?core::marker::Sized
  10368. pub fn aya::EbpfLoader<'a>::type_id(&self) -> core::any::TypeId
  10369. impl<T> core::borrow::Borrow<T> for aya::EbpfLoader<'a> where T: ?core::marker::Sized
  10370. pub fn aya::EbpfLoader<'a>::borrow(&self) -> &T
  10371. impl<T> core::borrow::BorrowMut<T> for aya::EbpfLoader<'a> where T: ?core::marker::Sized
  10372. pub fn aya::EbpfLoader<'a>::borrow_mut(&mut self) -> &mut T
  10373. impl<T> core::convert::From<T> for aya::EbpfLoader<'a>
  10374. pub fn aya::EbpfLoader<'a>::from(t: T) -> T
  10375. pub struct aya::GlobalData<'a>
  10376. impl<'a, T: aya::Pod> core::convert::From<&'a T> for aya::GlobalData<'a>
  10377. pub fn aya::GlobalData<'a>::from(v: &'a T) -> Self
  10378. impl<'a, T: aya::Pod> core::convert::From<&'a [T]> for aya::GlobalData<'a>
  10379. pub fn aya::GlobalData<'a>::from(s: &'a [T]) -> Self
  10380. impl<'a> core::marker::Freeze for aya::GlobalData<'a>
  10381. impl<'a> core::marker::Send for aya::GlobalData<'a>
  10382. impl<'a> core::marker::Sync for aya::GlobalData<'a>
  10383. impl<'a> core::marker::Unpin for aya::GlobalData<'a>
  10384. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::GlobalData<'a>
  10385. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::GlobalData<'a>
  10386. impl<T, U> core::convert::Into<U> for aya::GlobalData<'a> where U: core::convert::From<T>
  10387. pub fn aya::GlobalData<'a>::into(self) -> U
  10388. impl<T, U> core::convert::TryFrom<U> for aya::GlobalData<'a> where U: core::convert::Into<T>
  10389. pub type aya::GlobalData<'a>::Error = core::convert::Infallible
  10390. pub fn aya::GlobalData<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10391. impl<T, U> core::convert::TryInto<U> for aya::GlobalData<'a> where U: core::convert::TryFrom<T>
  10392. pub type aya::GlobalData<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  10393. pub fn aya::GlobalData<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10394. impl<T> core::any::Any for aya::GlobalData<'a> where T: 'static + ?core::marker::Sized
  10395. pub fn aya::GlobalData<'a>::type_id(&self) -> core::any::TypeId
  10396. impl<T> core::borrow::Borrow<T> for aya::GlobalData<'a> where T: ?core::marker::Sized
  10397. pub fn aya::GlobalData<'a>::borrow(&self) -> &T
  10398. impl<T> core::borrow::BorrowMut<T> for aya::GlobalData<'a> where T: ?core::marker::Sized
  10399. pub fn aya::GlobalData<'a>::borrow_mut(&mut self) -> &mut T
  10400. impl<T> core::convert::From<T> for aya::GlobalData<'a>
  10401. pub fn aya::GlobalData<'a>::from(t: T) -> T
  10402. pub struct aya::VerifierLogLevel(_)
  10403. impl aya::VerifierLogLevel
  10404. pub const aya::VerifierLogLevel::DEBUG: Self
  10405. pub const aya::VerifierLogLevel::DISABLE: Self
  10406. pub const aya::VerifierLogLevel::STATS: Self
  10407. pub const aya::VerifierLogLevel::VERBOSE: Self
  10408. impl aya::VerifierLogLevel
  10409. pub const fn aya::VerifierLogLevel::all() -> Self
  10410. pub const fn aya::VerifierLogLevel::bits(&self) -> u32
  10411. pub const fn aya::VerifierLogLevel::complement(self) -> Self
  10412. pub const fn aya::VerifierLogLevel::contains(&self, other: Self) -> bool
  10413. pub const fn aya::VerifierLogLevel::difference(self, other: Self) -> Self
  10414. pub const fn aya::VerifierLogLevel::empty() -> Self
  10415. pub const fn aya::VerifierLogLevel::from_bits(bits: u32) -> core::option::Option<Self>
  10416. pub const fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> Self
  10417. pub const fn aya::VerifierLogLevel::from_bits_truncate(bits: u32) -> Self
  10418. pub fn aya::VerifierLogLevel::from_name(name: &str) -> core::option::Option<Self>
  10419. pub fn aya::VerifierLogLevel::insert(&mut self, other: Self)
  10420. pub const fn aya::VerifierLogLevel::intersection(self, other: Self) -> Self
  10421. pub const fn aya::VerifierLogLevel::intersects(&self, other: Self) -> bool
  10422. pub const fn aya::VerifierLogLevel::is_all(&self) -> bool
  10423. pub const fn aya::VerifierLogLevel::is_empty(&self) -> bool
  10424. pub fn aya::VerifierLogLevel::remove(&mut self, other: Self)
  10425. pub fn aya::VerifierLogLevel::set(&mut self, other: Self, value: bool)
  10426. pub const fn aya::VerifierLogLevel::symmetric_difference(self, other: Self) -> Self
  10427. pub fn aya::VerifierLogLevel::toggle(&mut self, other: Self)
  10428. pub const fn aya::VerifierLogLevel::union(self, other: Self) -> Self
  10429. impl aya::VerifierLogLevel
  10430. pub const fn aya::VerifierLogLevel::iter(&self) -> bitflags::iter::Iter<aya::VerifierLogLevel>
  10431. pub const fn aya::VerifierLogLevel::iter_names(&self) -> bitflags::iter::IterNames<aya::VerifierLogLevel>
  10432. impl bitflags::traits::Flags for aya::VerifierLogLevel
  10433. pub type aya::VerifierLogLevel::Bits = u32
  10434. pub const aya::VerifierLogLevel::FLAGS: &'static [bitflags::traits::Flag<aya::VerifierLogLevel>]
  10435. pub fn aya::VerifierLogLevel::bits(&self) -> u32
  10436. pub fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> aya::VerifierLogLevel
  10437. impl bitflags::traits::PublicFlags for aya::VerifierLogLevel
  10438. pub type aya::VerifierLogLevel::Internal = InternalBitFlags
  10439. pub type aya::VerifierLogLevel::Primitive = u32
  10440. impl core::clone::Clone for aya::VerifierLogLevel
  10441. pub fn aya::VerifierLogLevel::clone(&self) -> aya::VerifierLogLevel
  10442. impl core::default::Default for aya::VerifierLogLevel
  10443. pub fn aya::VerifierLogLevel::default() -> Self
  10444. impl core::fmt::Binary for aya::VerifierLogLevel
  10445. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10446. impl core::fmt::Debug for aya::VerifierLogLevel
  10447. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10448. impl core::fmt::LowerHex for aya::VerifierLogLevel
  10449. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10450. impl core::fmt::Octal for aya::VerifierLogLevel
  10451. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10452. impl core::fmt::UpperHex for aya::VerifierLogLevel
  10453. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10454. impl core::iter::traits::collect::Extend<aya::VerifierLogLevel> for aya::VerifierLogLevel
  10455. pub fn aya::VerifierLogLevel::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  10456. impl core::iter::traits::collect::FromIterator<aya::VerifierLogLevel> for aya::VerifierLogLevel
  10457. pub fn aya::VerifierLogLevel::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  10458. impl core::iter::traits::collect::IntoIterator for aya::VerifierLogLevel
  10459. pub type aya::VerifierLogLevel::IntoIter = bitflags::iter::Iter<aya::VerifierLogLevel>
  10460. pub type aya::VerifierLogLevel::Item = aya::VerifierLogLevel
  10461. pub fn aya::VerifierLogLevel::into_iter(self) -> Self::IntoIter
  10462. impl core::marker::Copy for aya::VerifierLogLevel
  10463. impl core::ops::arith::Sub for aya::VerifierLogLevel
  10464. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10465. pub fn aya::VerifierLogLevel::sub(self, other: Self) -> Self
  10466. impl core::ops::arith::SubAssign for aya::VerifierLogLevel
  10467. pub fn aya::VerifierLogLevel::sub_assign(&mut self, other: Self)
  10468. impl core::ops::bit::BitAnd for aya::VerifierLogLevel
  10469. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10470. pub fn aya::VerifierLogLevel::bitand(self, other: Self) -> Self
  10471. impl core::ops::bit::BitAndAssign for aya::VerifierLogLevel
  10472. pub fn aya::VerifierLogLevel::bitand_assign(&mut self, other: Self)
  10473. impl core::ops::bit::BitOr for aya::VerifierLogLevel
  10474. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10475. pub fn aya::VerifierLogLevel::bitor(self, other: aya::VerifierLogLevel) -> Self
  10476. impl core::ops::bit::BitOrAssign for aya::VerifierLogLevel
  10477. pub fn aya::VerifierLogLevel::bitor_assign(&mut self, other: Self)
  10478. impl core::ops::bit::BitXor for aya::VerifierLogLevel
  10479. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10480. pub fn aya::VerifierLogLevel::bitxor(self, other: Self) -> Self
  10481. impl core::ops::bit::BitXorAssign for aya::VerifierLogLevel
  10482. pub fn aya::VerifierLogLevel::bitxor_assign(&mut self, other: Self)
  10483. impl core::ops::bit::Not for aya::VerifierLogLevel
  10484. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10485. pub fn aya::VerifierLogLevel::not(self) -> Self
  10486. impl core::marker::Freeze for aya::VerifierLogLevel
  10487. impl core::marker::Send for aya::VerifierLogLevel
  10488. impl core::marker::Sync for aya::VerifierLogLevel
  10489. impl core::marker::Unpin for aya::VerifierLogLevel
  10490. impl core::panic::unwind_safe::RefUnwindSafe for aya::VerifierLogLevel
  10491. impl core::panic::unwind_safe::UnwindSafe for aya::VerifierLogLevel
  10492. impl<T, U> core::convert::Into<U> for aya::VerifierLogLevel where U: core::convert::From<T>
  10493. pub fn aya::VerifierLogLevel::into(self) -> U
  10494. impl<T, U> core::convert::TryFrom<U> for aya::VerifierLogLevel where U: core::convert::Into<T>
  10495. pub type aya::VerifierLogLevel::Error = core::convert::Infallible
  10496. pub fn aya::VerifierLogLevel::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10497. impl<T, U> core::convert::TryInto<U> for aya::VerifierLogLevel where U: core::convert::TryFrom<T>
  10498. pub type aya::VerifierLogLevel::Error = <U as core::convert::TryFrom<T>>::Error
  10499. pub fn aya::VerifierLogLevel::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10500. impl<T> alloc::borrow::ToOwned for aya::VerifierLogLevel where T: core::clone::Clone
  10501. pub type aya::VerifierLogLevel::Owned = T
  10502. pub fn aya::VerifierLogLevel::clone_into(&self, target: &mut T)
  10503. pub fn aya::VerifierLogLevel::to_owned(&self) -> T
  10504. impl<T> core::any::Any for aya::VerifierLogLevel where T: 'static + ?core::marker::Sized
  10505. pub fn aya::VerifierLogLevel::type_id(&self) -> core::any::TypeId
  10506. impl<T> core::borrow::Borrow<T> for aya::VerifierLogLevel where T: ?core::marker::Sized
  10507. pub fn aya::VerifierLogLevel::borrow(&self) -> &T
  10508. impl<T> core::borrow::BorrowMut<T> for aya::VerifierLogLevel where T: ?core::marker::Sized
  10509. pub fn aya::VerifierLogLevel::borrow_mut(&mut self) -> &mut T
  10510. impl<T> core::clone::CloneToUninit for aya::VerifierLogLevel where T: core::clone::Clone
  10511. pub unsafe fn aya::VerifierLogLevel::clone_to_uninit(&self, dest: *mut u8)
  10512. impl<T> core::convert::From<T> for aya::VerifierLogLevel
  10513. pub fn aya::VerifierLogLevel::from(t: T) -> T
  10514. pub unsafe trait aya::Pod: core::marker::Copy + 'static
  10515. impl aya::Pod for aya_obj::generated::linux_bindings_x86_64::bpf_cpumap_val
  10516. impl aya::Pod for aya_obj::generated::linux_bindings_x86_64::bpf_devmap_val
  10517. impl aya::Pod for i128
  10518. impl aya::Pod for i16
  10519. impl aya::Pod for i32
  10520. impl aya::Pod for i64
  10521. impl aya::Pod for i8
  10522. impl aya::Pod for u128
  10523. impl aya::Pod for u16
  10524. impl aya::Pod for u32
  10525. impl aya::Pod for u64
  10526. impl aya::Pod for u8
  10527. impl<K: aya::Pod> aya::Pod for aya::maps::lpm_trie::Key<K>
  10528. impl<T: aya::Pod, const N: usize> aya::Pod for [T; N]
  10529. pub fn aya::features() -> &'static aya_obj::obj::Features
  10530. pub type aya::Bpf = aya::Ebpf
  10531. pub type aya::BpfError = aya::EbpfError
  10532. pub type aya::BpfLoader<'a> = aya::EbpfLoader<'a>